|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.turbine.util.TurbineRuntimeException
public class TurbineRuntimeException
This is a base class of runtime exeptions thrown by Turbine.
This class represents a non-checked type exception (see
RuntimeException
). It has the nested stack trace
functionality found in the TurbineException
class.
Constructor Summary | |
---|---|
TurbineRuntimeException()
Constructs a new TurbineRuntimeException without specified
detail message. |
|
TurbineRuntimeException(String msg)
Constructs a new TurbineRuntimeException with specified
detail message. |
|
TurbineRuntimeException(String msg,
Throwable nested)
Constructs a new TurbineRuntimeException with specified
detail message and nested Throwable . |
|
TurbineRuntimeException(Throwable nested)
Constructs a new TurbineRuntimeException with specified
nested Throwable . |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public TurbineRuntimeException()
TurbineRuntimeException
without specified
detail message.
public TurbineRuntimeException(String msg)
TurbineRuntimeException
with specified
detail message.
msg
- the error message.public TurbineRuntimeException(Throwable nested)
TurbineRuntimeException
with specified
nested Throwable
.
nested
- the exception or error that caused this exception
to be thrown.public TurbineRuntimeException(String msg, Throwable nested)
TurbineRuntimeException
with specified
detail message and nested Throwable
.
msg
- the error message.nested
- the exception or error that caused this exception
to be thrown.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |