ErrorCode.java 404 B

12345678910111213141516171819
  1. package com.shawn.constant;
  2. /**
  3. * @author 吴洪双
  4. */
  5. public class ErrorCode {
  6. public static final int SERVER_INTERNAL_ERROR = 1000;
  7. public static final int PARAMETER_MISSING_ERROR = 1001;
  8. public static final int PARAMETER_ILLEGAL_ERROR = 1002;
  9. public static final int RESOURCE_NOT_FOUND_ERROR = 1003;
  10. /**
  11. * Prevent instantiation
  12. */
  13. private ErrorCode() {
  14. }
  15. }