public class FunctionTypeException extends Exception
FunctionFactory
was called, but the other method should have been called instead.Constructor and Description |
---|
FunctionTypeException()
Constructs a new
FunctionTypeException with no message or cause. |
FunctionTypeException(String message)
Constructs a new
FunctionTypeException with a message, but no cause. |
FunctionTypeException(String message,
Throwable cause)
Constructs a new
FunctionTypeException with a message and a cause. |
FunctionTypeException(Throwable cause)
Constructs a new
FunctionTypeException with a cause, but no message. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public FunctionTypeException()
FunctionTypeException
with no message or cause.public FunctionTypeException(String message)
FunctionTypeException
with a message, but no cause. The message
is saved for later retrieval by the Throwable.getMessage()
method.message
- the detail message (null
if nonexistent or unknown)public FunctionTypeException(Throwable cause)
FunctionTypeException
with a cause, but no message. The cause
is saved for later retrieval by the Throwable.getCause()
method.cause
- the cause (null
if nonexistent or unknown)public FunctionTypeException(String message, Throwable cause)
FunctionTypeException
with a message and a cause. The message
and cause are saved for later retrieval by the Throwable.getMessage()
and Throwable.getCause()
methods.message
- the detail message (null
if nonexistent or unknown)cause
- the cause (null
if nonexistent or unknown)Copyright © 2017 WSO2. All rights reserved.