Class UserDefinedFunctionProcessingError
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.daffodil.api.udf.exceptions.UserDefinedFunctionProcessingError
- All Implemented Interfaces:
Serializable
Exception to throw to cause backtracking during parsing/unparsing.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUserDefinedFunctionProcessingError
(String errorMessage) Constructs a new exception with a specified detail messageUserDefinedFunctionProcessingError
(String errorMessage, Throwable cause) Constructs a new exception with a specified detail message and causeConstructs a new exception with a 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
-
UserDefinedFunctionProcessingError
Constructs a new exception with a specified detail message- Parameters:
errorMessage
- the detail message
-
UserDefinedFunctionProcessingError
Constructs a new exception with a specified cause- Parameters:
cause
- the cause of the exception
-
UserDefinedFunctionProcessingError
Constructs a new exception with a specified detail message and cause- Parameters:
errorMessage
- the detail messagecause
- the cause of the exception
-