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

com.seepine.auth.exception.AuthException Maven / Gradle / Ivy

There is a newer version: 2.0.0-beta.18
Show newest version
package com.seepine.auth.exception;

/**
 * @author seepine
 */
public class AuthException extends Exception {
    String message;

    public AuthException(String message) {
        this.message = message;
    }

    @Override
    public String getMessage() {
        return message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy