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

org.yamcs.security.AuthenticationException Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
package org.yamcs.security;

/**
 * Thrown when an {@link AuthModule} failed to perform the authentication process (backend not available, password does
 * not match, ...).
 */
@SuppressWarnings("serial")
public class AuthenticationException extends Exception {

    public AuthenticationException(String message) {
        super(message);
    }

    public AuthenticationException(String message, Throwable t) {
        super(message, t);
    }

    public AuthenticationException(Throwable t) {
        super(t);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy