com.ls.lars.communication
Class CompressionTypeException

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

public class CompressionTypeException
extends ConnectionException

The wrong or none compression type is send. If a connection is established the first thing a compression type is send.

Version:
$Revision: 1.0 $
Author:
Last modified by $Author: CReich $
See Also:
Serialized Form

Fields inherited from class com.ls.BaseException
innerThrowable
 
Constructor Summary
CompressionTypeException()
          Creates a CompressionTypeException with no specified detail message.
CompressionTypeException(String description)
          Creates a CompressionTypeException with the specified detail message.
CompressionTypeException(String description, Throwable throwable)
          Creates a CompressionTypeException 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

CompressionTypeException

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

CompressionTypeException

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

CompressionTypeException

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