com.centrasite.jaxr.filter
Class CentraSiteFilterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
javax.xml.registry.JAXRException
com.centrasite.jaxr.filter.CentraSiteFilterException
- All Implemented Interfaces:
- java.io.Serializable, javax.xml.registry.JAXRResponse
public class CentraSiteFilterException
- extends javax.xml.registry.JAXRException
Base class for exceptions to be thrown by CentraSite filters.
- See Also:
- Serialized Form
Fields inherited from class javax.xml.registry.JAXRException |
cause |
Fields inherited from interface javax.xml.registry.JAXRResponse |
STATUS_FAILURE, STATUS_SUCCESS, STATUS_UNAVAILABLE, STATUS_WARNING |
Constructor Summary |
CentraSiteFilterException()
Constructs a new CentraSiteFilterException with null as its detail message. |
CentraSiteFilterException(java.lang.String message)
Constructs a new exception with the specified detail message. |
CentraSiteFilterException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause. |
CentraSiteFilterException(java.lang.Throwable cause)
Constructs a new exception with the specified cause and a detail message of
(cause==null ? |
Methods inherited from class javax.xml.registry.JAXRException |
getCause, getMessage, getRequestId, getStatus, initCause, isAvailable |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getStackTrace, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
CentraSiteFilterException
public CentraSiteFilterException()
- Constructs a new CentraSiteFilterException with null as its detail message.
The cause is not initialized, and may subsequently be initialized by calling initCause().
CentraSiteFilterException
public CentraSiteFilterException(java.lang.String message)
- Constructs a new exception with the specified detail message.
The cause is not initialized, and may subsequently be initialized by calling initCause().
- Parameters:
message
- the detail message. The detail message can be retrieved by calling getMessage().
CentraSiteFilterException
public CentraSiteFilterException(java.lang.String message,
java.lang.Throwable cause)
- Constructs a new exception with the specified detail message and cause.
Note that the detail message associated with cause is not automatically incorporated in this exception's detail message.
- Parameters:
message
- the detail message. The detail message can be retrieved by calling getMessage().cause
- the cause. The cause can be retrieved by calling getCause(). A null value is permitted,
and indicates that the cause is nonexistent or unknown.
CentraSiteFilterException
public CentraSiteFilterException(java.lang.Throwable cause)
- Constructs a new exception with the specified cause and a detail message of
(cause==null ? null : cause.toString()).
- Parameters:
cause
- the cause. The cause can be retrieved by calling getCause(). A null value is permitted,
and indicates that the cause is nonexistent or unknown.