BusinessException.java 455 B

1234567891011121314151617181920
  1. package com.fdkankan.common.exception;
  2. import com.fdkankan.common.constant.ErrorCode;
  3. import lombok.AllArgsConstructor;
  4. import lombok.Data;
  5. /**
  6. * 自定义业务异常类
  7. */
  8. @Data
  9. @AllArgsConstructor
  10. public class BusinessException extends RuntimeException {
  11. private int code;
  12. private String message;
  13. public BusinessException (ErrorCode errorCode){
  14. this.code = errorCode.code();
  15. this.message = errorCode.message();
  16. }
  17. }