Class NestableError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- org.apache.commons.lang.exception.NestableError
-
- All Implemented Interfaces:
java.io.Serializable,Nestable
public class NestableError extends java.lang.Error implements Nestable
The base class of all errors which can contain other exceptions.- Since:
- 1.0
- See Also:
NestableException, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NestableError()Constructs a newNestableErrorwithout specified detail message.NestableError(java.lang.String msg)Constructs a newNestableErrorwith specified detail message.NestableError(java.lang.String msg, java.lang.Throwable cause)Constructs a newNestableErrorwith specified detail message and nestedThrowable.NestableError(java.lang.Throwable cause)Constructs a newNestableErrorwith specified nestedThrowable.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ThrowablegetCause()Returns the reference to the exception or error that caused the exception implementing theNestableto be thrown.java.lang.StringgetMessage()Returns the detail message string of this throwable.java.lang.StringgetMessage(int index)Returns the error message of theThrowablein the chain ofThrowables at the specified index, numbered from 0.java.lang.String[]getMessages()Returns the error message of this and any nestedThrowables in an array of Strings, one element for each message.java.lang.ThrowablegetThrowable(int index)Returns theThrowablein the chain ofThrowables at the specified index, numbered from 0.intgetThrowableCount()Returns the number of nestedThrowables represented by thisNestable, including thisNestable.java.lang.Throwable[]getThrowables()Returns thisNestableand any nestedThrowables in an array ofThrowables, one element for eachThrowable.intindexOfThrowable(java.lang.Class type)Returns the index, numbered from 0, of the first occurrence of the specified type, or a subclass, in the chain ofThrowables.intindexOfThrowable(java.lang.Class type, int fromIndex)Returns the index, numbered from 0, of the firstThrowablethat matches the specified type, or a subclass, in the chain ofThrowables with an index greater than or equal to the specified index.voidprintPartialStackTrace(java.io.PrintWriter out)Prints the stack trace for this exception only--root cause not included--using the provided writer.voidprintStackTrace()voidprintStackTrace(java.io.PrintStream out)Prints the stack trace of this exception to the specified print stream.voidprintStackTrace(java.io.PrintWriter out)Prints the stack trace of this exception to the specified print writer.
-
-
-
Constructor Detail
-
NestableError
public NestableError()
Constructs a newNestableErrorwithout specified detail message.
-
NestableError
public NestableError(java.lang.String msg)
Constructs a newNestableErrorwith specified detail message.- Parameters:
msg- The error message.
-
NestableError
public NestableError(java.lang.Throwable cause)
Constructs a newNestableErrorwith specified nestedThrowable.- Parameters:
cause- the exception or error that caused this exception to be thrown
-
NestableError
public NestableError(java.lang.String msg, java.lang.Throwable cause)Constructs a newNestableErrorwith 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()
Returns the reference to the exception or error that caused the exception implementing theNestableto be thrown.
-
getMessage
public java.lang.String getMessage()
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:
getMessagein interfaceNestable- Overrides:
getMessagein classjava.lang.Throwable- Returns:
- String message string of the throwable
-
getMessage
public java.lang.String getMessage(int index)
Returns the error message of theThrowablein the chain ofThrowables at the specified index, numbered from 0.- Specified by:
getMessagein interfaceNestable- Parameters:
index- the index of theThrowablein the chain ofThrowables- Returns:
- the error message, or null if the
Throwableat the specified index in the chain does not contain a message
-
getMessages
public java.lang.String[] getMessages()
Returns the error message of this and any nestedThrowables in an array of Strings, one element for each message. AnyThrowablenot 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:
getMessagesin interfaceNestable- Returns:
- the error messages
-
getThrowable
public java.lang.Throwable getThrowable(int index)
Returns theThrowablein the chain ofThrowables at the specified index, numbered from 0.- Specified by:
getThrowablein interfaceNestable- Parameters:
index- the index, numbered from 0, of theThrowablein the chain ofThrowables- Returns:
- the
Throwable
-
getThrowableCount
public int getThrowableCount()
Returns the number of nestedThrowables represented by thisNestable, including thisNestable.- Specified by:
getThrowableCountin interfaceNestable- Returns:
- the throwable count
-
getThrowables
public java.lang.Throwable[] getThrowables()
Returns thisNestableand any nestedThrowables in an array ofThrowables, one element for eachThrowable.- Specified by:
getThrowablesin interfaceNestable- Returns:
- the
Throwables
-
indexOfThrowable
public int indexOfThrowable(java.lang.Class type)
Returns the index, numbered from 0, of the first occurrence of the specified type, or a subclass, in the chain ofThrowables. The method returns -1 if the specified type is not found in the chain.NOTE: From v2.1, we have clarified the
Nestableinterface 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:
indexOfThrowablein 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)Returns the index, numbered from 0, of the firstThrowablethat matches the specified type, or a subclass, in the chain ofThrowables 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
Nestableinterface 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:
indexOfThrowablein 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()
- Overrides:
printStackTracein classjava.lang.Throwable
-
printStackTrace
public void printStackTrace(java.io.PrintStream out)
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:
printStackTracein interfaceNestable- Overrides:
printStackTracein classjava.lang.Throwable- Parameters:
out-PrintStreamto use for output.
-
printStackTrace
public void printStackTrace(java.io.PrintWriter out)
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:
printStackTracein interfaceNestable- Overrides:
printStackTracein classjava.lang.Throwable- Parameters:
out-PrintWriterto use for output.
-
printPartialStackTrace
public final void printPartialStackTrace(java.io.PrintWriter out)
Prints the stack trace for this exception only--root cause not included--using the provided writer. Used byNestableDelegateto write individual stack traces to a buffer. The implementation of this method should callsuper.printStackTrace(out);in most cases.- Specified by:
printPartialStackTracein interfaceNestable- Parameters:
out- The writer to use.
-
-