com.ibm.tscc.rtss.authz.api
Class AttributeInstantiationException
- java.lang.Object
java.lang.Throwable
java.lang.Exception
com.ibm.tscc.rtss.authz.api.AttributeInstantiationException
All implemented interfaces:
java.io.Serializable
- public class AttributeInstantiationException
- extends java.lang.Exception
Since:
7.1.0.1
See Also:
Constructor Summary
Constructor and Description |
---|
AttributeInstantiationException()
Create an AttributeInstantiationException with no detail message or cause.
|
AttributeInstantiationException(java.lang.Exception cause)
Create an AttributeInstantiationException from another Exception.
|
AttributeInstantiationException(java.lang.String message)
Create an AttributeInstantiationException where the cause was not triggered by a
downstream Exception or Error.
|
AttributeInstantiationException(java.lang.String message,java.lang.Exception cause)
Create an AttributeInstantiationException from another Exception (cause) and add
a simple string message.
|
Method Summary
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
AttributeInstantiationException
- public AttributeInstantiationException( )
Create an AttributeInstantiationException with no detail message or cause.
Default constructor.
Other constructor preferred - should have message associated with exception.
AttributeInstantiationException
- public AttributeInstantiationException( java.lang.Exception cause)
Create an AttributeInstantiationException from another Exception.
Most cases this constructor is not desired as we should be adding
a message to the exception.
Other constructor preferred - should have message associated with exception.
Parameters:
cause
- the cause, which is saved for later retrieval by the
Throwable.getCause() method. A null value is permitted, and
indicates that the cause is nonexistent or unknown. AttributeInstantiationException
- public AttributeInstantiationException( java.lang.String message)
Create an AttributeInstantiationException where the cause was not triggered by a
downstream Exception or Error. Add a simple string message.
Parameters:
message
- the detail message. AttributeInstantiationException
- public AttributeInstantiationException( java.lang.String message,
- java.lang.Exception cause)
Create an AttributeInstantiationException from another Exception (cause) and add
a simple string message.
Parameters:
message
- the detail message. cause
- the cause (which is saved for later retrieval by the
Throwable.getCause() method). A null value is permitted, and
indicates that the cause is nonexistent or unknown.