Package org.apache.maven.exception
Class ExceptionSummary
- java.lang.Object
-
- org.apache.maven.exception.ExceptionSummary
-
public class ExceptionSummary extends java.lang.Object
Provide a summary of the exception, containing:- the exception itself,
- useful end-user message,
- useful reference to a solution, or set of solutions: this is usually a wiki page url in http://cwiki.apache.org/confluence/display/MAVEN/,
- child exception summaries.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.List<ExceptionSummary>
children
private java.lang.Throwable
exception
private java.lang.String
message
private java.lang.String
reference
-
Constructor Summary
Constructors Constructor Description ExceptionSummary(java.lang.Throwable exception, java.lang.String message, java.lang.String reference)
ExceptionSummary(java.lang.Throwable exception, java.lang.String message, java.lang.String reference, java.util.List<ExceptionSummary> children)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<ExceptionSummary>
getChildren()
java.lang.Throwable
getException()
java.lang.String
getMessage()
java.lang.String
getReference()
-
-
-
Field Detail
-
exception
private java.lang.Throwable exception
-
message
private java.lang.String message
-
reference
private java.lang.String reference
-
children
private java.util.List<ExceptionSummary> children
-
-
Constructor Detail
-
ExceptionSummary
public ExceptionSummary(java.lang.Throwable exception, java.lang.String message, java.lang.String reference)
-
ExceptionSummary
public ExceptionSummary(java.lang.Throwable exception, java.lang.String message, java.lang.String reference, java.util.List<ExceptionSummary> children)
-
-
Method Detail
-
getException
public java.lang.Throwable getException()
-
getMessage
public java.lang.String getMessage()
-
getReference
public java.lang.String getReference()
-
getChildren
public java.util.List<ExceptionSummary> getChildren()
-
-