ca.bc.gov.webade
Class WebADEException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byca.bc.gov.webade.WebADEException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ConfigurationException, IndeterminateAuthorizationsException

public class WebADEException
extends java.lang.Exception

This exception indicates that an error was found while attempting to access some component of the WebADE framework. It likely indicates a problem with the WebADE configuration on the server.

To aid in debugging this exception may contain lower-level exceptions chained to it.

See Also:
Serialized Form

Constructor Summary
WebADEException()
          Constructs a WebADEException object; msg defaults to null
WebADEException(java.lang.String msg)
          Constructs a WebADEException object with a message
WebADEException(java.lang.String msg, java.lang.Exception ex)
          Constructs a WebADEException object with a message and a chained exception.
WebADEException(java.lang.Throwable ex)
          Constructs a WebADEException object with a chained exception.
 
Method Summary
 java.lang.Exception getNextException()
          Deprecated. Use Throwable.getCause()
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

WebADEException

public WebADEException()
Constructs a WebADEException object; msg defaults to null


WebADEException

public WebADEException(java.lang.String msg)
Constructs a WebADEException object with a message

Parameters:
msg - The text message.

WebADEException

public WebADEException(java.lang.Throwable ex)
Constructs a WebADEException object with a chained exception.

Parameters:
ex - The chained exception.

WebADEException

public WebADEException(java.lang.String msg,
                       java.lang.Exception ex)
Constructs a WebADEException object with a message and a chained exception.

Parameters:
msg - The text message.
ex - The chained exception.
Method Detail

getNextException

public java.lang.Exception getNextException()
Deprecated. Use Throwable.getCause()

return the chained exception, if any

Returns:
The chained exception.