Project

Profile

Help

SaxonApiException::getSystemId() throws NullPointerException

Added by Paul Greve 10 months ago

Using SaxonC 12.2 to validate a source document against a schema. If an exception is caught and getSystemId() is called on the exception, I get the following error and my process dies:

java.lang.NullPointerException: null at net.sf.saxon.option.cpp.SaxonCAPI.stringToNative2(SaxonCAPI.java:327) at net.sf.saxon.option.cpp.SaxonCException.getSystemId(SaxonCException.java:202)

ex. catch(SaxonApiException& e) { const char*systemId = (e.getSystemId() == nullptr) ? "" : e.getSystemId(); printf("SystemId: ", systemId); }

The exception can be due to anything. ex. parse or validation errors in the source doc or a missing license file.

Is this expected behavior?


Replies (2)

RE: SaxonApiException::getSystemId() throws NullPointerException - Added by O'Neil Delpratt 10 months ago

This is a bug. If the URI of the module associated with the exception is unknown then we should return NULL.

Created the bug issue #6098 to track progress.

I have applied the fix for this in the underlying java class that handles exceptions. This will be available in the next maintenance release.

    (1-2/2)

    Please register to reply