27 lines
541 B
Java
27 lines
541 B
Java
package com.ruoyi.lsfx.exception;
|
|
|
|
/**
|
|
* 流水分析平台API异常
|
|
*/
|
|
public class LsfxApiException extends RuntimeException {
|
|
|
|
private String errorCode;
|
|
|
|
public LsfxApiException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public LsfxApiException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public LsfxApiException(String errorCode, String message) {
|
|
super(message);
|
|
this.errorCode = errorCode;
|
|
}
|
|
|
|
public String getErrorCode() {
|
|
return errorCode;
|
|
}
|
|
}
|