I took <https://kotlinlang.org/docs/reference/exce...
# announcements
m
I took https://kotlinlang.org/docs/reference/exceptions.html to mean that Kotlin exceptions should be in the form:
Copy code
class MyException : Throwable()
but after some nasty issues I see that you probably meant:
Copy code
class MyException: Exception()