com.ls.lars
Class LarsException

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

public class LarsException
extends BaseException

lars exception handling class

Version:
$Revision: 1.2 $
Author:
Last modified by $Author: ODrugan $
See Also:
Serialized Form

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

LarsException

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

LarsException

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

LarsException

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