org.blojsom.authorization
Class AuthorizationException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.blojsom.BlojsomException
              extended byorg.blojsom.authorization.AuthorizationException
All Implemented Interfaces:
java.io.Serializable

public class AuthorizationException
extends BlojsomException

AuthorizationException

Since:
blojsom 3.0
Version:
$Id: AuthorizationException.java,v 1.2 2007/01/17 02:35:16 czarneckid Exp $
Author:
David Czarnecki
See Also:
Serialized Form

Constructor Summary
AuthorizationException()
          Constructs a new exception with null as its detail message.
AuthorizationException(java.lang.String string)
          Constructs a new exception with the specified detail message.
AuthorizationException(java.lang.String string, java.lang.Throwable throwable)
          Constructs a new exception with the specified detail message and cause.
AuthorizationException(java.lang.Throwable throwable)
          Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).
 
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

AuthorizationException

public AuthorizationException()
Constructs a new exception with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).


AuthorizationException

public AuthorizationException(java.lang.String string)
Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).


AuthorizationException

public AuthorizationException(java.lang.String string,
                              java.lang.Throwable throwable)
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.


AuthorizationException

public AuthorizationException(java.lang.Throwable throwable)
Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause). This constructor is useful for exceptions that are little more than wrappers for other throwables (for example, PrivilegedActionException).