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

org.tkit.quarkus.rs.context.RestContextException Maven / Gradle / Ivy

There is a newer version: 2.36.0
Show newest version
package org.tkit.quarkus.rs.context;

public class RestContextException extends RuntimeException {

    private Enum key;

    public RestContextException(Enum key, String message) {
        super(message);
        this.key = key;
    }

    public RestContextException(Enum key, String message, Throwable throwable) {
        super(message, throwable);
        this.key = key;
    }

    public Enum getKey() {
        return key;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy