Package org.jboss.util
Class UnreachableStatementException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.jboss.util.UnreachableStatementException
-
- All Implemented Interfaces:
java.io.Serializable
public class UnreachableStatementException extends java.lang.RuntimeException
Thrown to indicate that section of code that should never have been reachable, has just been reached.- Version:
- $Revision$
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
The serialVersionUID
-
Constructor Summary
Constructors Constructor Description UnreachableStatementException()
Construct a UnreachableStatementException with no detail.UnreachableStatementException(java.lang.String msg)
Construct a UnreachableStatementException with a detail message.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
The serialVersionUID- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UnreachableStatementException
public UnreachableStatementException(java.lang.String msg)
Construct a UnreachableStatementException with a detail message.- Parameters:
msg
- Detail message.
-
UnreachableStatementException
public UnreachableStatementException()
Construct a UnreachableStatementException with no detail.
-
-