com.ibm.tscc.rtss.authz.api

Class AttributeInstantiationException

  1. java.lang.Object
  2. extended byjava.lang.Throwable
  3. extended byjava.lang.Exception
  4. extended bycom.ibm.tscc.rtss.authz.api.AttributeInstantiationException
All implemented interfaces:
java.io.Serializable

  1. public class AttributeInstantiationException
  2. extends java.lang.Exception
Indicates there was a problem instantiating an Attribute. Typically this will occur when invalid or unsupported arguments are supplied.
Since:
7.1.0.1
See Also:
Serialized Form

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

  1. public AttributeInstantiationException( )
Create an AttributeInstantiationException with no detail message or cause. Default constructor. Other constructor preferred - should have message associated with exception.

AttributeInstantiationException

  1. 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

  1. 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

  1. public AttributeInstantiationException( java.lang.String message,
  2. 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.