org.apache.turbine.util
Class TurbineRuntimeException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.apache.commons.lang.exception.NestableRuntimeException
                  extended byorg.apache.turbine.util.TurbineRuntimeException
All Implemented Interfaces:
org.apache.commons.lang.exception.Nestable, java.io.Serializable
Direct Known Subclasses:
InstantiationException

public class TurbineRuntimeException
extends org.apache.commons.lang.exception.NestableRuntimeException

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.

Version:
$Id: TurbineRuntimeException.java 534527 2007-05-02 16:10:59Z tv $
Author:
Rafal Krzewski, Daniel Rall, Quinton McCombs
See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.apache.commons.lang.exception.NestableRuntimeException
delegate
 
Constructor Summary
TurbineRuntimeException()
          Constructs a new TurbineRuntimeException without specified detail message.
TurbineRuntimeException(java.lang.String msg)
          Constructs a new TurbineRuntimeException with specified detail message.
TurbineRuntimeException(java.lang.String msg, java.lang.Throwable nested)
          Constructs a new TurbineRuntimeException with specified detail message and nested Throwable.
TurbineRuntimeException(java.lang.Throwable nested)
          Constructs a new TurbineRuntimeException with specified nested Throwable.
 
Methods inherited from class org.apache.commons.lang.exception.NestableRuntimeException
getCause, getMessage, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TurbineRuntimeException

public TurbineRuntimeException()
Constructs a new TurbineRuntimeException without specified detail message.


TurbineRuntimeException

public TurbineRuntimeException(java.lang.String msg)
Constructs a new TurbineRuntimeException with specified detail message.

Parameters:
msg - the error message.

TurbineRuntimeException

public TurbineRuntimeException(java.lang.Throwable nested)
Constructs a new TurbineRuntimeException with specified nested Throwable.

Parameters:
nested - the exception or error that caused this exception to be thrown.

TurbineRuntimeException

public TurbineRuntimeException(java.lang.String msg,
                               java.lang.Throwable nested)
Constructs a new TurbineRuntimeException with specified detail message and nested Throwable.

Parameters:
msg - the error message.
nested - the exception or error that caused this exception to be thrown.


Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.