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

exceptions.AuthenticationException Maven / Gradle / Ivy

There is a newer version: 1.3.9
Show newest version
package exceptions;

public class AuthenticationException extends Exception {
    private Exception rootException;

    public AuthenticationException(Exception rootException) {
        super(rootException);
        this.rootException = rootException;
    }

    public Exception getRootException() {
        return rootException;
    }

    public void setRootException(Exception rootException) {
        this.rootException = rootException;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy