blob: df5bbbe0fc534df01fee754254ac0f2f12ffce3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
class FireException : Exception
/**
* COMM
* @param a Some string
* @return value of a
* @throws FireException in case of fire
*/
@Throws(FireException::class)
fun my(a: String): String = a
|