| java.lang.Object org.kuali.module.gl.service.impl.scrubber.Message
Message | public class Message (Code) | | A class that holds an error message that would have been encountered during a GL batch job
|
TYPE_FATAL | public static int TYPE_FATAL(Code) | | To mark Fatal errors, ones that should abend a batch process
|
TYPE_WARNING | public static int TYPE_WARNING(Code) | | To mark warning errors, ones that should simply be logged but not abend the process
|
Message | public Message(String m, int t)(Code) | | Constructs a Message instance
Parameters: m - the message Parameters: t - the type of message |
getMessage | public String getMessage()(Code) | | Returns the error message of this object
the error message held by this object |
getType | public int getType()(Code) | | Returns the error type for this object
the error type of this object |
setMessage | public void setMessage(String message)(Code) | | Sets the error message for this object
Parameters: message - the message to set |
setType | public void setType(int type)(Code) | | Sets the error type for this object
Parameters: type - an error type to set |
|
|