Class UDFException

  • All Implemented Interfaces:
    Serializable

    public class UDFException
    extends Exception
    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:
    Serialized Form
    • Constructor Detail

      • UDFException

        public UDFException()
        Creates a UDFException without specifying a concrete (error) message.
      • UDFException

        public UDFException​(String message)
        Creates a UDFException with a caller specified (error) message.
        Parameters:
        message - The message with an explanation of the exception.