12345678910111213141516171819 |
- package com.shawn.constant;
- /**
- * @author 吴洪双
- */
- public class ErrorCode {
- public static final int SERVER_INTERNAL_ERROR = 1000;
- public static final int PARAMETER_MISSING_ERROR = 1001;
- public static final int PARAMETER_ILLEGAL_ERROR = 1002;
- public static final int RESOURCE_NOT_FOUND_ERROR = 1003;
- /**
- * Prevent instantiation
- */
- private ErrorCode() {
- }
- }
|