Files
kotlin-fork/idea/resources/intentionDescriptions/AddThrowsAnnotationIntention/after.kt.template
T

6 lines
112 B
Plaintext

class MyException : Exception()
<spot>@Throws(MyException::class)</spot>
fun test() {
throw MyException()
}