org.apache.commons.lang
Class UnhandledException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--org.apache.commons.lang.exception.NestableRuntimeException
                          |
                          +--org.apache.commons.lang.UnhandledException
All Implemented Interfaces:
Nestable, java.io.Serializable

public class UnhandledException
extends NestableRuntimeException

Thrown when it is impossible or undesirable to consume or throw a checked exception.

Since:
2.0
Version:
$Id: UnhandledException.java,v 1.3 2003/08/18 02:22:23 bayard Exp $
Author:
Matthew Hawthorne
See Also:
Serialized Form

Fields inherited from class org.apache.commons.lang.exception.NestableRuntimeException
delegate
 
Constructor Summary
UnhandledException(java.lang.String message, java.lang.Throwable cause)
          Constructs the exception using a message and cause.
UnhandledException(java.lang.Throwable cause)
          Constructs the exception using a cause.
 
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, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UnhandledException

public UnhandledException(java.lang.Throwable cause)
Constructs the exception using a cause.
Parameters:
cause - the underlying cause

UnhandledException

public UnhandledException(java.lang.String message,
                          java.lang.Throwable cause)
Constructs the exception using a message and cause.
Parameters:
message - the message to use
cause - the underlying cause


Copyright © 2001-2003 - Apache Software Foundation