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

com.github.aesteve.vertx.nubes.exceptions.http.HttpException Maven / Gradle / Ivy

The newest version!
package com.github.aesteve.vertx.nubes.exceptions.http;

public abstract class HttpException extends Exception {

  private static final long serialVersionUID = 7595158960102835228L;

  public final int status;
  private final String msg;

  protected HttpException(int status, String msg) {
    this.status = status;
    this.msg = msg;
  }

  @Override
  public String getMessage() {
    return msg != null ? msg : "Http exception : " + status;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy