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