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