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

com.dahuatech.hutool.core.exceptions.StatefulException Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy