Package org.eclipse.ditto.rql.model
Class ParserException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.eclipse.ditto.rql.model.ParserException
- All Implemented Interfaces:
Serializable
Exception that can be thrown by a parser if there occurred errors during the parsing of the input.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new predicate parse exception without detail message or cause.ParserException(String message) Constructs a new predicate parse exception.ParserException(String message, Throwable cause) Constructs a new predicate parse exception with the specified detail message and cause.ParserException(Throwable cause) Constructs a new predicate parse exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ParserException
public ParserException()Constructs a new predicate parse exception without detail message or cause. -
ParserException
Constructs a new predicate parse exception.- Parameters:
message- the detail message.
-
ParserException
Constructs a new predicate parse exception with the specified cause.- Parameters:
cause- the cause.
-
ParserException
Constructs a new predicate parse exception with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause
-