Class ExpressionVisitException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.liferay.portal.odata.filter.expression.ExpressionVisitException
- All Implemented Interfaces:
Serializable
Defines an exception for
ExpressionVisitor
to throw if an error
occurs while traversing the expression tree.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a newExpressionVisitException
with a message.ExpressionVisitException
(String msg, Throwable throwable) Creates a newExpressionVisitException
with a message and the cause of the exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ExpressionVisitException
Creates a newExpressionVisitException
with a message.- Parameters:
msg
- the exception's message
-
ExpressionVisitException
Creates a newExpressionVisitException
with a message and the cause of the exception.- Parameters:
msg
- the exception's messagethrowable
- the exception's cause
-