Package org.eclipse.rdf4j.rio
Class RDFHandlerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.eclipse.rdf4j.common.exception.RDF4JException
org.eclipse.rdf4j.rio.RDFHandlerException
- All Implemented Interfaces:
Serializable
An exception that can be thrown by an RDFHandler when it encounters an unrecoverable error. If an exception is
associated with the error then this exception can be wrapped in an RDFHandlerException and can later be retrieved
from it when the RDFHandlerException is catched using the getCause().
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates a new RDFHandlerException.RDFHandlerException
(String msg, Throwable cause) Creates a new RDFHandlerException wrapping another exception.RDFHandlerException
(Throwable cause) Creates a new RDFHandlerException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RDFHandlerException
Creates a new RDFHandlerException.- Parameters:
msg
- An error message.
-
RDFHandlerException
Creates a new RDFHandlerException.- Parameters:
cause
- The cause of the exception.
-
RDFHandlerException
Creates a new RDFHandlerException wrapping another exception.- Parameters:
msg
- An error message.cause
- The cause of the exception.
-