Class FunctionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aquima.interactions.foundation.exception.AppException
-
- com.aquima.interactions.portal.function.FunctionException
-
- All Implemented Interfaces:
Serializable
public class FunctionException extends AppException
- Since:
- 10.3
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FunctionException(String message)
Constructs a function exception for a function with a text object explaining the cause of the error.FunctionException(String message, Throwable cause)
Constructs a function exception for a function with a text object explaining the cause of the error.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
FunctionException
public FunctionException(String message)
Constructs a function exception for a function with a text object explaining the cause of the error.- Parameters:
message
- Text object containing additional information about the cause of the error.
-
FunctionException
public FunctionException(String message, Throwable cause)
Constructs a function exception for a function with a text object explaining the cause of the error.- Parameters:
message
- Text object containing additional information about the cause of the error.cause
- Cause of the exception
-
-