柯桥增值式服务
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
349B

  1. package com.ningdatech.kqapi.common.exception.code;
  2. /**
  3. * 异常编码
  4. *
  5. * @author WendyYang
  6. * @date 2017-12-25 13:46
  7. */
  8. public interface BaseExceptionCode {
  9. /**
  10. * 异常编码
  11. *
  12. * @return 异常编码
  13. */
  14. int getCode();
  15. /**
  16. * 异常消息
  17. *
  18. * @return 异常消息
  19. */
  20. String getMsg();
  21. }