Why are Exceptions in Kotlin always unchecked? Wou...
# announcements
s
Why are Exceptions in Kotlin always unchecked? Wouldn't this lead to a lot of programming errors?
a
This is a good read on the topic https://www.artima.com/intv/handcuffs.html
s
Oh, ok seems plausible. Thank you!
i
Java have unchecked exceptions that inherits RuntimeExpection
s
Yeah I know. But it also has checked exceptions. That was the point of my question. But the article explained it really well.