Class UDFNotRegisteredException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.aristaflow.adept2.model.datamanagement.UDFNotRegisteredException
-
- All Implemented Interfaces:
Serializable
public class UDFNotRegisteredException extends Exception
AUDFNotRegisteredExceptionindicates that the requested user-defined function (UDF) is not available for the designated user-defined data type (UDT). This may also stem from mispelling the function name.- Author:
- Ulrich Kreher
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UDFNotRegisteredException()Creates aUDFNotRegisteredExceptionwithout specifying a concrete (error) message.UDFNotRegisteredException(String message)Creates aUDFNotRegisteredExceptionwith 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
-
UDFNotRegisteredException
public UDFNotRegisteredException()
Creates aUDFNotRegisteredExceptionwithout specifying a concrete (error) message.
-
UDFNotRegisteredException
public UDFNotRegisteredException(String message)
Creates aUDFNotRegisteredExceptionwith a caller specified (error) message.- Parameters:
message- The message with an explanation of the exception.
-
-