Class ExceptionData_1_0
java.lang.Object
com.gradle.scan.eventmodel.gradle.ExceptionData_1_0
- All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData
- Direct Known Subclasses:
ExceptionData_1_1
@GradleVersion(since="2.0")
@PluginVersion(since="1.14",
until="1.15")
public class ExceptionData_1_0
extends Object
implements com.gradle.scan.eventmodel.EventData
All of the exceptions thrown during the build, that were attached to events.
Events conveying failures during the build store a key value for this event's exceptions map
(see BuildFinished_1_1.failureId as an example).
The same exception may appear in multiple places, and on multiple events, so may share the same ID.
If no such exceptions occurred, there will be no event of this type. Otherwise, there will be exactly one.
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal Map<Long, ? extends Exception_3_0> The exceptions thrown during the build, that were attached to events.final Map<Long, ? extends StackFrame_1_0> The stack frames of thestackTraces.final Map<Long, ? extends StackTrace_1_0> The stack traces of theexceptions. -
Constructor Summary
ConstructorsConstructorDescriptionExceptionData_1_0(Map<Long, ? extends Exception_3_0> exceptions, Map<Long, ? extends StackTrace_1_0> stackTraces, Map<Long, ? extends StackFrame_1_0> stackFrames) -
Method Summary
-
Field Details
-
exceptions
The exceptions thrown during the build, that were attached to events.The
Exception_3_0.causesof each exception refers to entries in this map. TheException_3_0.stackTraceof exception refers to entries instackTraces -
stackTraces
The stack traces of theexceptions.The
StackTrace_1_0.stackFramesof each stack trace refers to entries instackFrames. -
stackFrames
The stack frames of thestackTraces.
-
-
Constructor Details
-
ExceptionData_1_0
public ExceptionData_1_0(Map<Long, ? extends Exception_3_0> exceptions, Map<Long, ? extends StackTrace_1_0> stackTraces, Map<Long, ? extends StackFrame_1_0> stackFrames)
-
-
Method Details