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

org.tkit.quarkus.rs.context.token.TokenException Maven / Gradle / Ivy

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

public class TokenException extends RuntimeException {

    private final Enum key;

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

    public Enum getKey() {
        return key;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy