10 lines
162 B
Kotlin
Vendored
10 lines
162 B
Kotlin
Vendored
class MyError : Throwable()
|
|
|
|
@Throws(MyError::class)
|
|
fun foo() = Unit
|
|
|
|
@Throws(Throwable::class)
|
|
fun bar() = Unit
|
|
|
|
@Throws(Throwable::class)
|
|
fun someString() = "" |