Yes, constructors can throw an exception. However, please note that, if a superclass constructor throws a checked exception, then if any subclass constructor calls that superclass constructor must throw the same exception, or a broader exception.
Login to rate this answer.
yes if super class is throwung Exception then sub class will throw Throwable
Login to rate this answer.
Jacqui
Answered On : Aug 13th, 2012
How can that be if constructors are not inheritable?
Login to rate this answer.
avinash
Answered On : Sep 26th, 2012
yes,if exception related statements are there in constructor then it automatically throws an exception,if that is un-checked.
Login to rate this answer.