Interface InternalFailure
-
public interface InternalFailure
DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.- Since:
- 2.4
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<? extends InternalFailure>
getCauses()
The cause of the failure, if any, which is again a failure.java.lang.String
getDescription()
The description of the failure, if any.java.lang.String
getMessage()
The message of the failure, if any.
-
-
-
Method Detail
-
getMessage
java.lang.String getMessage()
The message of the failure, if any.- Returns:
- the failure message, can be null
-
getDescription
java.lang.String getDescription()
The description of the failure, if any.- Returns:
- the failure description, can be null
-
getCauses
java.util.List<? extends InternalFailure> getCauses()
The cause of the failure, if any, which is again a failure.- Returns:
- the cause of the failure, can be null
-
-