java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sun.xacml.cond.FunctionTypeException
- All Implemented Interfaces:
- java.io.Serializable
- public class FunctionTypeException
- extends java.lang.Exception
Exception that gets thrown if one of the createFunction methods on the
FunctionFactory was called, but the other method should have
been called instead.
- Since:
- 1.0
| Nested classes inherited from class java.lang.Throwable |
|
| Fields inherited from class java.lang.Exception |
|
| Fields inherited from class java.lang.Throwable |
|
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
FunctionTypeException
public FunctionTypeException()
- Constructs a new
FunctionTypeException with no message
or cause.
FunctionTypeException
public FunctionTypeException(java.lang.String message)
- Constructs a new
FunctionTypeException with a message,
but no cause. The message is saved for later retrieval by the
Throwable.getMessage()
method.
FunctionTypeException
public FunctionTypeException(java.lang.Throwable cause)
- Constructs a new
FunctionTypeException with a cause,
but no message. The cause is saved for later retrieval by the
Throwable.getCause()
method.
FunctionTypeException
public FunctionTypeException(java.lang.String message,
java.lang.Throwable cause)
- Constructs a new
FunctionTypeException with a message
and a cause. The message and cause are saved for later retrieval
by the
Throwable.getMessage() and
Throwable.getCause()
methods.