In java adjectives ending in -able are interfaces Serializable, Comparable etc... So why is Throwable a class? Wouldn\'t exception handlin
Serializable
Comparable
Throwable
FYI
You can not use
void doSomething() throws Serializable
but you can use generics!
doSomething() throws T
Regards