org.apache.commons.lang
public class: UnhandledException [javadoc |
source]
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, Serializable
Thrown when it is impossible or undesirable to consume or throw a checked exception.
This exception supplements the standard exception classes by providing a more
semantically rich description of the problem.
UnhandledException represents the case where a method has to deal
with a checked exception but does not wish to.
Instead, the checked exception is rethrown in this unchecked wrapper.
public void foo() {
try {
// do something that throws IOException
} catch (IOException ex) {
// don't want to or can't throw IOException from foo()
throw new UnhandledException(ex);
}
}
- author:
Matthew - Hawthorne
- since:
2.0 -
- version:
$ - Id: UnhandledException.java 437554 2006-08-28 06:21:41Z bayard $
| Methods from org.apache.commons.lang.exception.NestableRuntimeException: |
|---|
|
getCause, getMessage, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, printStackTrace, printStackTrace, printStackTrace |
| Methods from java.lang.Throwable: |
|---|
|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |