Class QueryMaxASTDepthExceededException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
in.co.akshitbansal.springwebquery.exception.QueryException
in.co.akshitbansal.springwebquery.exception.QueryValidationException
in.co.akshitbansal.springwebquery.exception.QueryMaxASTDepthExceededException
- All Implemented Interfaces:
Serializable
Indicates that a query exceeded the maximum allowed RSQL AST depth.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionQueryMaxASTDepthExceededException(String message, int maxASTDepthAllowed) Creates a new max AST depth exceeded exception.QueryMaxASTDepthExceededException(String message, int maxASTDepthAllowed, Throwable cause) Creates a new max AST depth exceeded exception with an underlying 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
-
QueryMaxASTDepthExceededException
Creates a new max AST depth exceeded exception.- Parameters:
message- validation error detailsmaxASTDepthAllowed- maximum AST depth permitted
-
QueryMaxASTDepthExceededException
Creates a new max AST depth exceeded exception with an underlying cause.- Parameters:
message- validation error detailsmaxASTDepthAllowed- maximum AST depth permittedcause- root cause of the validation failure
-