Writing Exception Subclasses
| |||
Most
exception subclasses inherit all their functionality from the superclass.
Each subclass mainly serves as a marker for a different kind of exception.
However it only rarely provides new methods or fields. Thus most of the
time the only methods you need to implement are the constructors. There
should be one noargs constructor and one constructor that takes a
| |||
|