Package 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:
java.io.Serializable
,Nestable
@Deprecated(since="2021-04-30") public class UnhandledException extends NestableRuntimeException
Deprecated.Commons Lang 2 is in maintenance mode. Commons Lang 3 should be used instead.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); } }
- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnhandledException(java.lang.String message, java.lang.Throwable cause)
Deprecated.Constructs the exception using a message and cause.UnhandledException(java.lang.Throwable cause)
Deprecated.Constructs the exception using a cause.
-
Method Summary
-
Methods inherited from class org.apache.commons.lang.exception.NestableRuntimeException
getCause, getMessage, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, printStackTrace, printStackTrace, printStackTrace
-
-
-
-
Constructor Detail
-
UnhandledException
public UnhandledException(java.lang.Throwable cause)
Deprecated.Constructs the exception using a cause.- Parameters:
cause
- the underlying cause
-
UnhandledException
public UnhandledException(java.lang.String message, java.lang.Throwable cause)
Deprecated.Constructs the exception using a message and cause.- Parameters:
message
- the message to usecause
- the underlying cause
-
-