Class RDFHandlerException

All Implemented Interfaces:
Serializable

public class RDFHandlerException extends RDF4JException
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 Details

    • RDFHandlerException

      public RDFHandlerException(String msg)
      Creates a new RDFHandlerException.
      Parameters:
      msg - An error message.
    • RDFHandlerException

      public RDFHandlerException(Throwable cause)
      Creates a new RDFHandlerException.
      Parameters:
      cause - The cause of the exception.
    • RDFHandlerException

      public RDFHandlerException(String msg, Throwable cause)
      Creates a new RDFHandlerException wrapping another exception.
      Parameters:
      msg - An error message.
      cause - The cause of the exception.