Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.sun.xacml.cond
Class FunctionTypeException  view FunctionTypeException download FunctionTypeException.java

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycom.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 Class Summary
 
Nested classes inherited from class java.lang.Throwable
 
Field Summary
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
FunctionTypeException()
          Constructs a new FunctionTypeException with no message or cause.
FunctionTypeException(java.lang.String message)
          Constructs a new FunctionTypeException with a message, but no cause.
FunctionTypeException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new FunctionTypeException with a message and a cause.
FunctionTypeException(java.lang.Throwable cause)
          Constructs a new FunctionTypeException with a cause, but no message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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.