org.springframework.core
Interface ErrorCoded
public interface ErrorCoded
Interface that can be implemented by exceptions etc that are error coded. The error code is a String, rather than a number, so it can be given user-readable values, such as "object.failureDescription".An error code can be resolved by a MessageSource, for example.
- Author:
- Rod Johnson
- See Also:
-
org.springframework.context.MessageSource
-
Method Summary
Methods Modifier and Type Method and Description String
getErrorCode()
Return the error code associated with this failure.
-
Method Detail
getErrorCode
String getErrorCode()
Return the error code associated with this failure. The GUI can render this any way it pleases, allowing for localization etc.- Returns:
-
a String error code associated with this failure, or
null
if not error-coded