com.dahuatech.hutool.core.exceptions.StatefulException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Dahua ICC Open API SDK for Java
package com.dahuatech.hutool.core.exceptions;
import com.dahuatech.hutool.core.util.StrUtil;
/**
* 带有状态码的异常
*
* @author xiaoleilu
*/
public class StatefulException extends RuntimeException {
private static final long serialVersionUID = 6057602589533840889L;
// 异常状态码
private int status;
public StatefulException() {}
public StatefulException(String msg) {
super(msg);
}
public StatefulException(String messageTemplate, Object... params) {
super(StrUtil.format(messageTemplate, params));
}
public StatefulException(Throwable throwable) {
super(throwable);
}
public StatefulException(String msg, Throwable throwable) {
super(msg, throwable);
}
public StatefulException(int status, String msg) {
super(msg);
this.status = status;
}
public StatefulException(int status, Throwable throwable) {
super(throwable);
this.status = status;
}
public StatefulException(int status, String msg, Throwable throwable) {
super(msg, throwable);
this.status = status;
}
/** @return 获得异常状态码 */
public int getStatus() {
return status;
}
}