[
Lists Home |
Date Index |
Thread Index
]
> public class TimBraySAXException extends SAXException { //details.. }
This works for relatively simple cases, but if the application invoked by
the ContentHandler is a real application of any complexity (say a
manufacturing scheduler) then you wouldn't want to distort the class
hierarchy in this way. In fact, if you're invoking existing libraries then
the exception classes will already be defined so you don't have this option.
In this case you have no choice but to wrap these exceptions inside a
SAXException (and then unwrap them when they re-emerge) in the way Tim
originally described.
I must admit I have become so accustomed to doing this that it has ceased to
seem contorted.
Michael Kay
http://www.saxonica.com/
|