Class NestableRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.commons.lang.exception.NestableRuntimeException
-
- All Implemented Interfaces:
java.io.Serializable
,Nestable
- Direct Known Subclasses:
CloneFailedException
,SerializationException
,UnhandledException
@Deprecated(since="2021-04-30") public class NestableRuntimeException extends java.lang.RuntimeException implements Nestable
Deprecated.Commons Lang 2 is in maintenance mode. Commons Lang 3 should be used instead.The base class of all runtime exceptions which can contain other exceptions.- Since:
- 1.0
- See Also:
NestableException
, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NestableRuntimeException()
Deprecated.Constructs a newNestableRuntimeException
without specified detail message.NestableRuntimeException(java.lang.String msg)
Deprecated.Constructs a newNestableRuntimeException
with specified detail message.NestableRuntimeException(java.lang.String msg, java.lang.Throwable cause)
Deprecated.Constructs a newNestableRuntimeException
with specified detail message and nestedThrowable
.NestableRuntimeException(java.lang.Throwable cause)
Deprecated.Constructs a newNestableRuntimeException
with specified nestedThrowable
.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.Throwable
getCause()
Deprecated.Returns the reference to the exception or error that caused the exception implementing theNestable
to be thrown.java.lang.String
getMessage()
Deprecated.Returns the detail message string of this throwable.java.lang.String
getMessage(int index)
Deprecated.Returns the error message of theThrowable
in the chain ofThrowable
s at the specified index, numbered from 0.java.lang.String[]
getMessages()
Deprecated.Returns the error message of this and any nestedThrowable
s in an array of Strings, one element for each message.java.lang.Throwable
getThrowable(int index)
Deprecated.Returns theThrowable
in the chain ofThrowable
s at the specified index, numbered from 0.int
getThrowableCount()
Deprecated.Returns the number of nestedThrowable
s represented by thisNestable
, including thisNestable
.java.lang.Throwable[]
getThrowables()
Deprecated.Returns thisNestable
and any nestedThrowable
s in an array ofThrowable
s, one element for eachThrowable
.int
indexOfThrowable(java.lang.Class type)
Deprecated.Returns the index, numbered from 0, of the first occurrence of the specified type, or a subclass, in the chain ofThrowable
s.int
indexOfThrowable(java.lang.Class type, int fromIndex)
Deprecated.Returns the index, numbered from 0, of the firstThrowable
that matches the specified type, or a subclass, in the chain ofThrowable
s with an index greater than or equal to the specified index.void
printPartialStackTrace(java.io.PrintWriter out)
Deprecated.Prints the stack trace for this exception only--root cause not included--using the provided writer.void
printStackTrace()
Deprecated.void
printStackTrace(java.io.PrintStream out)
Deprecated.Prints the stack trace of this exception to the specified print stream.void
printStackTrace(java.io.PrintWriter out)
Deprecated.Prints the stack trace of this exception to the specified print writer.
-
-
-
Constructor Detail
-
NestableRuntimeException
public NestableRuntimeException()
Deprecated.Constructs a newNestableRuntimeException
without specified detail message.
-
NestableRuntimeException
public NestableRuntimeException(java.lang.String msg)
Deprecated.Constructs a newNestableRuntimeException
with specified detail message.- Parameters:
msg
- the error message
-
NestableRuntimeException
public NestableRuntimeException(java.lang.Throwable cause)
Deprecated.Constructs a newNestableRuntimeException
with specified nestedThrowable
.- Parameters:
cause
- the exception or error that caused this exception to be thrown
-
NestableRuntimeException
public NestableRuntimeException(java.lang.String msg, java.lang.Throwable cause)
Deprecated.Constructs a newNestableRuntimeException
with specified detail message and nestedThrowable
.- Parameters:
msg
- the error messagecause
- the exception or error that caused this exception to be thrown
-
-
Method Detail
-
getCause
public java.lang.Throwable getCause()
Deprecated.Returns the reference to the exception or error that caused the exception implementing theNestable
to be thrown.
-
getMessage
public java.lang.String getMessage()
Deprecated.Returns the detail message string of this throwable. If it was created with a null message, returns the following: (cause==null ? null : cause.toString()).- Specified by:
getMessage
in interfaceNestable
- Overrides:
getMessage
in classjava.lang.Throwable
- Returns:
- String message string of the throwable
-
getMessage
public java.lang.String getMessage(int index)
Deprecated.Returns the error message of theThrowable
in the chain ofThrowable
s at the specified index, numbered from 0.- Specified by:
getMessage
in interfaceNestable
- Parameters:
index
- the index of theThrowable
in the chain ofThrowable
s- Returns:
- the error message, or null if the
Throwable
at the specified index in the chain does not contain a message
-
getMessages
public java.lang.String[] getMessages()
Deprecated.Returns the error message of this and any nestedThrowable
s in an array of Strings, one element for each message. AnyThrowable
not containing a message is represented in the array by a null. This has the effect of cause the length of the returned array to be equal to the result of theNestable.getThrowableCount()
operation.- Specified by:
getMessages
in interfaceNestable
- Returns:
- the error messages
-
getThrowable
public java.lang.Throwable getThrowable(int index)
Deprecated.Returns theThrowable
in the chain ofThrowable
s at the specified index, numbered from 0.- Specified by:
getThrowable
in interfaceNestable
- Parameters:
index
- the index, numbered from 0, of theThrowable
in the chain ofThrowable
s- Returns:
- the
Throwable
-
getThrowableCount
public int getThrowableCount()
Deprecated.Returns the number of nestedThrowable
s represented by thisNestable
, including thisNestable
.- Specified by:
getThrowableCount
in interfaceNestable
- Returns:
- the throwable count
-
getThrowables
public java.lang.Throwable[] getThrowables()
Deprecated.Returns thisNestable
and any nestedThrowable
s in an array ofThrowable
s, one element for eachThrowable
.- Specified by:
getThrowables
in interfaceNestable
- Returns:
- the
Throwable
s
-
indexOfThrowable
public int indexOfThrowable(java.lang.Class type)
Deprecated.Returns the index, numbered from 0, of the first occurrence of the specified type, or a subclass, in the chain ofThrowable
s. The method returns -1 if the specified type is not found in the chain.NOTE: From v2.1, we have clarified the
Nestable
interface such that this method matches subclasses. If you want to NOT match subclasses, please useExceptionUtils.indexOfThrowable(Throwable, Class)
(which is avaiable in all versions of lang).- Specified by:
indexOfThrowable
in interfaceNestable
- Parameters:
type
- the type to find, subclasses match, null returns -1- Returns:
- index of the first occurrence of the type in the chain, or -1 if the type is not found
-
indexOfThrowable
public int indexOfThrowable(java.lang.Class type, int fromIndex)
Deprecated.Returns the index, numbered from 0, of the firstThrowable
that matches the specified type, or a subclass, in the chain ofThrowable
s with an index greater than or equal to the specified index. The method returns -1 if the specified type is not found in the chain.NOTE: From v2.1, we have clarified the
Nestable
interface such that this method matches subclasses. If you want to NOT match subclasses, please useExceptionUtils.indexOfThrowable(Throwable, Class, int)
(which is avaiable in all versions of lang).- Specified by:
indexOfThrowable
in interfaceNestable
- Parameters:
type
- the type to find, subclasses match, null returns -1fromIndex
- the index, numbered from 0, of the starting position in the chain to be searched- Returns:
- index of the first occurrence of the type in the chain, or -1 if the type is not found
-
printStackTrace
public void printStackTrace()
Deprecated.- Overrides:
printStackTrace
in classjava.lang.Throwable
-
printStackTrace
public void printStackTrace(java.io.PrintStream out)
Deprecated.Prints the stack trace of this exception to the specified print stream. Includes information from the exception, if any, which caused this exception.- Specified by:
printStackTrace
in interfaceNestable
- Overrides:
printStackTrace
in classjava.lang.Throwable
- Parameters:
out
-PrintStream
to use for output.
-
printStackTrace
public void printStackTrace(java.io.PrintWriter out)
Deprecated.Prints the stack trace of this exception to the specified print writer. Includes information from the exception, if any, which caused this exception.- Specified by:
printStackTrace
in interfaceNestable
- Overrides:
printStackTrace
in classjava.lang.Throwable
- Parameters:
out
-PrintWriter
to use for output.
-
printPartialStackTrace
public final void printPartialStackTrace(java.io.PrintWriter out)
Deprecated.Prints the stack trace for this exception only--root cause not included--using the provided writer. Used byNestableDelegate
to write individual stack traces to a buffer. The implementation of this method should callsuper.printStackTrace(out);
in most cases.- Specified by:
printPartialStackTrace
in interfaceNestable
- Parameters:
out
- The writer to use.
-
-