Interface ErrorDetails
-
public interface ErrorDetailsEncapsulates the details of an error message, a String message and aListof arguments to substitute into the error message- Author:
- Carl Wilson
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ErrorArgument>getArguments()StringgetMessage()
-
-
-
Method Detail
-
getMessage
String getMessage()
- Returns:
- the Error message as a String
-
getArguments
List<ErrorArgument> getArguments()
- Returns:
- a List of String arguments for the error, or an empty List if there are no args.
-
-