Class ExceptionResult
java.lang.Object
de.gebit.integrity.runner.results.Result
de.gebit.integrity.runner.results.FixtureExecutionResult
de.gebit.integrity.runner.results.call.CallResult
de.gebit.integrity.runner.results.call.ExceptionResult
The result returned if a call resulted in an exception.
- Author:
- Rene Schneider - initial API and implementation
-
Nested Class Summary
Nested classes/interfaces inherited from class de.gebit.integrity.runner.results.call.CallResult
CallResult.UpdatedVariable -
Constructor Summary
ConstructorsConstructorDescriptionExceptionResult(Throwable anException, List<CallResult.UpdatedVariable> someVariablesToUpdate, FixtureWrapper<?> aFixtureInstance, String aFixtureMethod, Long anExecutionTime, List<ExtendedResultFixture.ExtendedResult> someExtendedResults) Creates a new instance. -
Method Summary
Methods inherited from class de.gebit.integrity.runner.results.call.CallResult
getUpdatedVariablesMethods inherited from class de.gebit.integrity.runner.results.FixtureExecutionResult
getExtendedResults, getFixtureInstance, getFixtureMethodMethods inherited from class de.gebit.integrity.runner.results.Result
getExecutionTime
-
Constructor Details
-
ExceptionResult
public ExceptionResult(Throwable anException, List<CallResult.UpdatedVariable> someVariablesToUpdate, FixtureWrapper<?> aFixtureInstance, String aFixtureMethod, Long anExecutionTime, List<ExtendedResultFixture.ExtendedResult> someExtendedResults) Creates a new instance.- Parameters:
anException- the exception that was thrownsomeVariablesToUpdate- the variables that were to be updatedaFixtureInstance- The fixture instance (wrapped) - may be null if no fixtures are called in the current phase (for example during the dry run).aFixtureMethod- the method that was executedanExecutionTime- the time it took to execute the callsomeExtendedResults- any extended results returned by the fixture
-
-
Method Details