atg.security
Class ImplementationSecurityException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by atg.core.exception.ContainerException
              extended by atg.security.SecurityException
                  extended by atg.security.ImplementationSecurityException
All Implemented Interfaces:
ContainableException, java.io.Serializable

public class ImplementationSecurityException
extends SecurityException

A security exception that wraps some kind of Throwable that occured within an implementation of a security system element. This allows implementation-dependent exception information to be passed up through the security APIs by individual implementations in a reasonably consistent manner.

This exception might be thrown if, for instance, the storage system encountered a failure trying to save owner or ID information.

See Also:
Serialized Form

Field Summary
static java.lang.String CLASS_VERSION
           
 
Constructor Summary
ImplementationSecurityException(java.lang.String message, java.lang.Throwable t)
          Wraps a throwable with a security exception, including additional textual information.
ImplementationSecurityException(java.lang.Throwable t)
          Wraps a throwable with a security exception.
 
Method Summary
 java.lang.Throwable getThrowable()
          Returns the throwable that caused this exception.
 java.lang.String toString()
          Display information about this exception and that of the source exception if there is one.
 
Methods inherited from class atg.core.exception.ContainerException
getMessageArguments, getSourceException, printStackTrace, printStackTrace, printStackTrace, printStackTrace, setMessageArguments, setSourceException, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

CLASS_VERSION

public static java.lang.String CLASS_VERSION
Constructor Detail

ImplementationSecurityException

public ImplementationSecurityException(java.lang.Throwable t)
Wraps a throwable with a security exception.


ImplementationSecurityException

public ImplementationSecurityException(java.lang.String message,
                                       java.lang.Throwable t)
Wraps a throwable with a security exception, including additional textual information.

Method Detail

getThrowable

public java.lang.Throwable getThrowable()
Returns the throwable that caused this exception.


toString

public java.lang.String toString()
Description copied from class: ContainerException
Display information about this exception and that of the source exception if there is one.

Overrides:
toString in class ContainerException