Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
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
)
}