com.ls.lars.communication
Class ConnectionException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.ls.BaseException
                    |
                    +--com.ls.lars.LarsException
                          |
                          +--com.ls.lars.communication.ConnectionException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CompressionTypeException

public class ConnectionException
extends LarsException

Connection exception handling class

Version:
$Revision: 1.3 $
Author:
Last modified by $Author: MFehrenbach $
See Also:
Serialized Form

Fields inherited from class com.ls.BaseException
innerThrowable
 
Constructor Summary
ConnectionException()
          Creates a ConnectionException with no specified detail message.
ConnectionException(String description)
          Creates a ConnectionException with the specified detail message.
ConnectionException(String description, Throwable throwable)
          Creates a ConnectionException with the specified detail message and nested exception.
 
Methods inherited from class com.ls.BaseException
getMessage, getNestedThrowable, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConnectionException

public ConnectionException()
Creates a ConnectionException with no specified detail message.

ConnectionException

public ConnectionException(String description)
Creates a ConnectionException with the specified detail message.
Parameters:
description - The detail message.

ConnectionException

public ConnectionException(String description,
                           Throwable throwable)
Creates a ConnectionException with the specified detail message and nested exception.
Parameters:
description - The detail message.
throwable - The nested exception.