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

io.vertx.tp.error._404ModuleMissingException Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.tp.error;

import io.vertx.core.http.HttpStatusCode;
import io.vertx.up.exception.WebException;

public class _404ModuleMissingException extends WebException {

    public _404ModuleMissingException(final Class clazz,
                                      final String module) {
        super(clazz, module);
    }

    @Override
    public int getCode() {
        return -80100;
    }

    @Override
    public HttpStatusCode getStatus() {
        return HttpStatusCode.NOT_FOUND;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy