SPT RWT Application API

com.sptci.rwt
Class ConnectionException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.sptci.rwt.ConnectionException
All Implemented Interfaces:
Serializable

public class ConnectionException
extends RuntimeException

A custom exception that is used to wrap any exceptions raised when fetching Connections.

© Copyright 2007 Sans Pareil Technologies, Inc.

Version:
$Id: ConnectionException.java 4123 2008-05-25 21:49:01Z rakesh $
Author:
Rakesh Vidyadharan 2007-09-24
See Also:
Serialized Form

Constructor Summary
protected ConnectionException()
          Default constructor.
  ConnectionException(String message)
          Create a new exception with the specified message.
  ConnectionException(String message, Throwable cause)
          Create a new exception with the specified message and instance of Throwable caused the problem.
  ConnectionException(Throwable cause)
          Create a new exception with the instance of Throwable that caused the problem.
 
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

ConnectionException

protected ConnectionException()
Default constructor. Cannot be instantiated.


ConnectionException

public ConnectionException(String message)
Create a new exception with the specified message.

Parameters:
message - The message that describes the problem.

ConnectionException

public ConnectionException(Throwable cause)
Create a new exception with the instance of Throwable that caused the problem.

Parameters:
cause - The exception that caused this instance of the exception to be thrown.

ConnectionException

public ConnectionException(String message,
                           Throwable cause)
Create a new exception with the specified message and instance of Throwable caused the problem.

Parameters:
message - The message that describes the problem.
cause - The exception that caused this instance of the exception to be thrown.

SPT RWT Application API