Re: isSupported12.xml

> > As far as throwing exceptions, when I see that there are No
> > Exceptions, I read that as no DOMExceptions -- are you
> > talking about something else?
>
> No Exceptions means that the implementation should throw no exceptions,
DOMException or other.  The caller depends that the only exceptions thrown
are those that are declared.  If the implementation
> throws an exception that was not declared (on platforms where that is
possible, it is enforced by the language in Java), then the contract with
the caller is violated.
>

[mb] Is this defined in the spec somewhere, because I'm not seeing it.  In
fact, I see the opposite in the spec.

from the spec...
DOM operations only raise exceptions in "exceptional" circumstances, i.e.,
when an operation is impossible to perform (either for logical reasons,
because data is lost, or because the implementation has become unstable). In
general, DOM methods return specific error values in ordinary processing
situations, such as out-of-bound errors when using NodeList.

Implementations should raise other exceptions under other circumstances. For
example, implementations should raise an implementation-dependent exception
if a null argument is passed.

...

Depending on how wanted to code this, it could be thrown by the language, or
it could be caught and an implementation-dependent exception could be
thrown.

--Mary

Received on Thursday, 25 October 2001 21:18:15 UTC