Package org.eclipse.jgit.errors
Class CompoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.jgit.errors.CompoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class CompoundException extends java.lang.Exception
An exception detailing multiple reasons for failure.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<java.lang.Throwable>
causeList
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description CompoundException(java.util.Collection<java.lang.Throwable> why)
Constructs an exception detailing many potential reasons for failure.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private static java.lang.String
format(java.util.Collection<java.lang.Throwable> causes)
java.util.List<java.lang.Throwable>
getAllCauses()
Get the complete list of reasons why this failure happened.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
causeList
private final java.util.List<java.lang.Throwable> causeList
-
-