| java.lang.Object com.rift.coad.daemon.messageservice.MessageError
MessageError | public class MessageError implements Serializable(Code) | | This object describes a message error.
author: Brett Chaldecott |
Method Summary | |
public Date | getErrorDate() This method returns the error date. | public int | getLevel() This method returns the error level. | public String | getMSG() This method returns the errorr message. |
MessageError | public MessageError(Date errorDate, int level, String msg)(Code) | | Creates a new instance of MessageError
Parameters: errorDate - The date the error occurred. Parameters: level - The level of the error message. Parameters: msg - The message content for the error. |
getErrorDate | public Date getErrorDate()(Code) | | This method returns the error date.
The error date object. |
getLevel | public int getLevel()(Code) | | This method returns the error level.
An int containing the error level. |
getMSG | public String getMSG()(Code) | | This method returns the errorr message.
The string containing the error message. |
|
|