org.safehaus.triplesec.guardian
Class GuardianException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.safehaus.triplesec.guardian.GuardianException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
NoConnectionDriverException, StoreConnectionException

public class GuardianException
extends java.lang.RuntimeException

An exception thrown by ApplicationPolicy and ApplicationPolicyFactory when connection to the store is not established or crashed.

Version:
$Rev: 53 $, $Date: 2005-08-21 20:58:16 -0400 (Sun, 21 Aug 2005) $
Author:
Alex Karasulu, Trustin Lee
See Also:
Serialized Form

Constructor Summary
GuardianException()
          Creates a simple exception with no message.
GuardianException(java.lang.String message)
          Creates a an exception with a message.
GuardianException(java.lang.String message, java.lang.Throwable nested)
          Creates a nested exception wrapping another throwable with a message.
GuardianException(java.lang.Throwable nested)
          Creates a nested exception wrapping another throwable.
 
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

GuardianException

public GuardianException()
Creates a simple exception with no message.


GuardianException

public GuardianException(java.lang.String message)
Creates a an exception with a message.

Parameters:
message - a message String indicating the problem

GuardianException

public GuardianException(java.lang.Throwable nested)
Creates a nested exception wrapping another throwable.

Parameters:
nested - the throwable wrapped by this ExceptionTests.

GuardianException

public GuardianException(java.lang.String message,
                         java.lang.Throwable nested)
Creates a nested exception wrapping another throwable with a message.

Parameters:
message - a message String indicating the problem
nested - the throwable wrapped by this ExceptionTests.