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
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.