Class MultiThrowable
java.lang.Object
java.lang.Throwable
org.apache.tomcat.util.MultiThrowable
- All Implemented Interfaces:
Serializable
Wraps a list of throwables as a single throwable. This is intended to be used when multiple actions are taken where
each may throw an exception but all actions are taken before any errors are reported.
This class is NOT threadsafe.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidAdd a throwable to the list of wrapped throwables.Return the wrapped throwable.Return a read-only list of the wrapped throwables.intsize()Return the number of throwables currently wrapped by this instance.toString()Overrides the default implementation to provide a concatenation of the messages associated with each of the wrapped throwables.Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
MultiThrowable
public MultiThrowable()Default constructor.
-
-
Method Details
-
add
Add a throwable to the list of wrapped throwables.- Parameters:
t- The throwable to add
-
getThrowables
-
getThrowable
Return the wrapped throwable.- Returns:
nullif there are no wrapped throwables, the Throwable if there is a single wrapped throwable or the current instance if there are multiple wrapped throwables
-
size
public int size()Return the number of throwables currently wrapped by this instance.- Returns:
- The number of throwables currently wrapped by this instance
-
toString
Overrides the default implementation to provide a concatenation of the messages associated with each of the wrapped throwables. Note that the format of the returned String is not guaranteed to be fixed and may change in a future release.
-