[Batchserver-cvs] batchserver/src/org/jmonks/batchserver/framework/common ErrorCode.java,1.16,1.17
Brought to you by:
suresh_pragada
From: Suresh <sur...@us...> - 2006-05-24 03:17:54
|
Update of /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/common In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv22496/org/jmonks/batchserver/framework/common Modified Files: ErrorCode.java Log Message: no message Index: ErrorCode.java =================================================================== RCS file: /cvsroot/batchserver/batchserver/src/org/jmonks/batchserver/framework/common/ErrorCode.java,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** ErrorCode.java 23 May 2006 03:16:29 -0000 1.16 --- ErrorCode.java 24 May 2006 03:17:40 -0000 1.17 *************** *** 143,147 **** * Represents the job controller configuration error. */ ! public static final ErrorCode JOB_CONTROLLER_CONFIGURATION_ERROR = new ErrorCode(1005,"Job controller configuration is not defined properly."); /** * Represents error because of the exception in basic job processor. --- 143,159 ---- * Represents the job controller configuration error. */ ! public static final ErrorCode JOB_CONTROLLER_CONFIGURATION_ERROR = new ErrorCode(1005,"Job controller configuration is not defined properly."); ! /** ! * Represents the logging configuration error. ! */ ! public static final ErrorCode JOB_LOGGING_CONFIGURATION_ERROR = new ErrorCode(1006,"Job logging configuration is not defined properly."); ! /** ! * Represents the repository configuration error. ! */ ! public static final ErrorCode JOB_REPOSITORY_CONFIGURATION_ERROR = new ErrorCode(1007,"Repository configuration in framework configuration is not defined properly."); ! /** ! * Represents the connector configuration error. ! */ ! public static final ErrorCode JOB_CONNECTOR_CONFIGURATION_ERROR = new ErrorCode(1008,"Repository configuration in framework configuration is not defined properly."); /** * Represents error because of the exception in basic job processor. *************** *** 159,163 **** * Rpresents miscellaneous Error codes. */ ! public static final ErrorCode CUSTOM_ERROR_CODE = new ErrorCode(1301, "Custome Error = "); } --- 171,175 ---- * Rpresents miscellaneous Error codes. */ ! public static final ErrorCode CUSTOM_ERROR_CODE = new ErrorCode(1301, "Custom Error Message = "); } |