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

io.soffa.foundation.errors.InvalidTokenException Maven / Gradle / Ivy

The newest version!
package io.soffa.foundation.errors;

public class InvalidTokenException extends FunctionalException {

    private static final long serialVersionUID = 1L;

    public InvalidTokenException(String message, Object... args) {
        super(message, args);
    }

    public InvalidTokenException(Throwable cause, String message, Object... args) {
        super(cause, message, args);
    }

    public InvalidTokenException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy