io.vertx.up.exception.web._401UnauthorizedException Maven / Gradle / Ivy
package io.vertx.up.exception.web;
import io.vertx.core.http.HttpStatusCode;
import io.vertx.up.exception.WebException;
public class _401UnauthorizedException extends WebException {
public _401UnauthorizedException(final Class> clazz) {
super(clazz);
}
@Override
public int getCode() {
return -60012;
}
@Override
public HttpStatusCode getStatus() {
return HttpStatusCode.UNAUTHORIZED;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy