| org.apache.turbine.util.TurbineRuntimeException
All known Subclasses: org.apache.turbine.services.InstantiationException,
TurbineRuntimeException | public class TurbineRuntimeException extends NestableRuntimeException (Code) | | This is a base class of runtime exeptions thrown by Turbine.
This class represents a non-checked type exception (see
java.lang.RuntimeException ). It has the nested stack trace
functionality found in the
TurbineException class.
author: Rafal Krzewski author: Daniel Rall author: Quinton McCombs version: $Id: TurbineRuntimeException.java 534527 2007-05-02 16:10:59Z tv $ |
TurbineRuntimeException | public TurbineRuntimeException()(Code) | | Constructs a new TurbineRuntimeException without specified
detail message.
|
TurbineRuntimeException | public TurbineRuntimeException(String msg)(Code) | | Constructs a new TurbineRuntimeException with specified
detail message.
Parameters: msg - the error message. |
TurbineRuntimeException | public TurbineRuntimeException(Throwable nested)(Code) | | Constructs a new TurbineRuntimeException with specified
nested Throwable .
Parameters: nested - the exception or error that caused this exceptionto be thrown. |
TurbineRuntimeException | public TurbineRuntimeException(String msg, Throwable nested)(Code) | | Constructs a new TurbineRuntimeException with specified
detail message and nested Throwable .
Parameters: msg - the error message. Parameters: nested - the exception or error that caused this exceptionto be thrown. |
|
|