com.ls
Class ProgrammingException

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

public class ProgrammingException
extends BaseRuntimeException

Exception to identify that there is a logical fault (e.g. wrong order of method calls) in the application.

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

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

ProgrammingException

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

ProgrammingException

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

ProgrammingException

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