Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f899cfcffd0a033719b670aa8e3e53cda9ded9a2
/
.
/
plugins
/
scripting
/
scripting-compiler
/
testData
/
integration
/
exceptionWithCause.kts
blob: ef7e44a6d16408b7ef28bb797945f48b808dbcca [
file
]
try
{
try
{
throw
Exception
(
"Error!"
)
}
catch
(
e
:
Exception
)
{
throw
Exception
(
"Oh no"
,
e
)
}
}
catch
(
e
:
Exception
)
{
throw
Exception
(
"Top"
,
e
)
}