Class UDFException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.aristaflow.adept2.model.datamanagement.UDFException
-
- All Implemented Interfaces:
Serializable
public class UDFException extends Exception
AUDFException
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 thisUDFException
.- Author:
- Ulrich Kreher
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UDFException()
Creates aUDFException
without specifying a concrete (error) message.UDFException(String message)
Creates aUDFException
with 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 Detail
-
UDFException
public UDFException()
Creates aUDFException
without specifying a concrete (error) message.
-
UDFException
public UDFException(String message)
Creates aUDFException
with a caller specified (error) message.- Parameters:
message
- The message with an explanation of the exception.
-
-