All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xiaoleilu.hutool.exceptions.StatefulException Maven / Gradle / Ivy

package com.xiaoleilu.hutool.exceptions;

import com.xiaoleilu.hutool.util.StrUtil;

/**
 * 带有状态码的异常
 * @author xiaoleilu
 *
 */
public class StatefulException extends Exception{
	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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy