Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
658323f2d1ad773d3c43be9ea85c77affdff2b5d
/
.
/
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
)
}