Re: [xml-dev] Re: [Sax-devel] Re: [xml-dev] SAX/Java Proposed Changes

From
Karl Waclawek <>
To
XML Developers List <>, SAX Developers' List <>
Date
2004-03-05T17:47:25Z
ID
<005301c402d9$ebc9b480$9e539696@citkwaclaww2k>
Thread
Re: [xml-dev] Re: [Sax-devel] Re: [xml-dev] SAX/Java Proposed Changes
----- Original Message ----- 
From: "Elliotte Rusty Harold" <>
To: "Karl Waclawek" <>
Cc: "David Megginson" <>; "XML Developers List" <>; "SAX
Developers' List" <>
Sent: Friday, March 05, 2004 12:22 PM

OK, I am replying only to the lists now.
This "Reply All" has escalated to the point where I get 5 identical
replies to my reply.


> My gut is that when the handler throws an exception it is not
> reported to fatalError. According to the ErrorHandler documentation,
> "The parser will then report all errors and warnings through this
> interface." The documentation of the three methods indicates this as
> well. For instance, fatalError "corresponds to the definition of
> "fatal error" in section 1.2 of the W3C XML 1.0 Recommendation. For
> example, a parser would use this callback to report the violation of
> a well-formedness constraint."

The question is: why can the exception argument passed to fataError()
wrap another exeption then?

> I see no text that indicates a user thrown exception should ever be
> passed to the ErrorHandler. Should endDocument be called even in the
> event of a user-thrown exception? I suspect not. The user threw it.
> Let them clean up after it.

That would negate the "cleanup" potential of endDocument.
I am not against this, as it is the normally expected behaviour
when an exception is thrown, but I would consider parser exceptions
no different from user exceptions.

So, what you are saying is:

- if fatal error, call endDocument
- if exception, do the normal thing (i.e. don't call endDocument)

I can live with that.

Karl