Package org.gradle.tooling
Interface Failure
- All Known Subinterfaces:
- FileComparisonTestAssertionFailure,- TestAssertionFailure,- TestFailure,- TestFrameworkFailure
public interface Failure
Represents a failure. Failures are similar to exceptions but carry less information (only a message, a description and a cause) so
 they can be used in a wider scope than just the JVM where the exception failed.
- Since:
- 2.4
- 
Method SummaryModifier and TypeMethodDescriptionReturns the underlying causes for this failure, if any.Returns a long description of the failure.Returns a short message (typically one line) for the failure.Returns the problems associated with this failure.
- 
Method Details- 
getMessageReturns a short message (typically one line) for the failure.- Returns:
- the failure message
 
- 
getDescriptionReturns a long description of the failure. For example, a stack trace.- Returns:
- a long description of the failure
 
- 
getCausesReturns the underlying causes for this failure, if any.- Returns:
- the causes for this failure. Returns an empty list if this failure has no causes.
 
- 
getProblemsReturns the problems associated with this failure.- Returns:
- The problems, or an empty list if there are no problems.
- Since:
- 8.12
 
 
-