39 lines
793 B
Java
39 lines
793 B
Java
package com.yaoyuan.jiscuss.exception;
|
|
|
|
import com.yaoyuan.jiscuss.response.ResponseCode;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
/**
|
|
* 业务异常类,继承运行时异常,确保事务正常回滚
|
|
*
|
|
* @author NULL
|
|
* @since 2019-07-16
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
public class BaseException extends RuntimeException {
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private ResponseCode code;
|
|
|
|
/**
|
|
* BaseException
|
|
* ResponseCode code
|
|
**/
|
|
public BaseException(ResponseCode code) {
|
|
this.code = code;
|
|
}
|
|
|
|
/**
|
|
* BaseException
|
|
* ResponseCode code
|
|
* Throwable cause
|
|
**/
|
|
public BaseException(Throwable cause, ResponseCode code) {
|
|
super(cause);
|
|
this.code = code;
|
|
}
|
|
}
|