Class UDFException
java.lang.Object
java.lang.Throwable
java.lang.Exception
de.aristaflow.adept2.model.datamanagement.UDFException
- All Implemented Interfaces:
Serializable
A
UDFException indicates that the execution of a user-defined
function (UDF) has failed. If the corresponding user-defined function has
access to Java-objects - for example it is a java-function or a native
interface exists -, further information will be able to be encapsulated by
this UDFException.- Author:
- Ulrich Kreher
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates aUDFExceptionwithout specifying a concrete (error) message.UDFException(String message) Creates aUDFExceptionwith a caller specified (error) message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UDFException
public UDFException()Creates aUDFExceptionwithout specifying a concrete (error) message. -
UDFException
Creates aUDFExceptionwith a caller specified (error) message.- Parameters:
message- The message with an explanation of the exception.
-