8 lines
233 B
Kotlin
Vendored
8 lines
233 B
Kotlin
Vendored
package kotlin
|
|
|
|
import kotlin.reflect.KClass
|
|
|
|
@Target(AnnotationTarget.FUNCTION, AnnotationTarget.CONSTRUCTOR)
|
|
@Retention(AnnotationRetention.SOURCE)
|
|
public annotation class Throws(vararg val exceptionClasses: KClass<out Throwable>)
|