com.ls
Class MissingDataException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--com.ls.BaseRuntimeException
                          |
                          +--com.ls.MissingDataException
All Implemented Interfaces:
Serializable

public class MissingDataException
extends BaseRuntimeException

Exception to identify that some data is missing or the type of some data is wrong.

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

Fields inherited from class com.ls.BaseRuntimeException
innerThrowable
 
Constructor Summary
MissingDataException()
          Creates a MissingDataException with no specified detail message.
MissingDataException(String description)
          Creates an MissingDataException with the specified detail message.
MissingDataException(String description, Throwable throwable)
          Creates an MissingDataException with the specified detail message and nested exception.
 
Methods inherited from class com.ls.BaseRuntimeException
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

MissingDataException

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

MissingDataException

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

MissingDataException

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