Package io.jans.as.model.error
Class ErrorMessage
- java.lang.Object
-
- io.jans.as.model.error.ErrorMessage
-
public class ErrorMessage extends Object
Represents an error message in a configuration XML file.
The attribute id is REQUIRED. A single error code.
The element description is OPTIONAL. A human-readable UTF-8 encoded text providing additional information, used to assist the client developer in understanding the error that occurred.
The element URI is OPTIONAL. A URI identifying a human-readable web page with information about the error, used to provide the client developer with additional information about the error.
- Author:
- Javier Rojas Date: 09.23.2011
-
-
Constructor Summary
Constructors Constructor Description ErrorMessage()
ErrorMessage(String id, String description, String uri)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
String
getId()
String
getUri()
void
setDescription(String description)
void
setId(String id)
void
setUri(String uri)
-