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

org.ccsds.moims.mo.mal.AuthenticationFailedException Maven / Gradle / Ivy

package org.ccsds.moims.mo.mal;

/**
 * The AuthenticationFailedException exception. A failure to authenticate the message 
 * correctly. 
 */
public final class AuthenticationFailedException extends org.ccsds.moims.mo.mal.MOErrorException {

    /**
     * Constructs a new AuthenticationFailedException exception.
     * 
     */
    public AuthenticationFailedException() {
        super(MALHelper.AUTHENTICATION_FAILED_ERROR_NUMBER, "");
    }

    /**
     * Constructs a new AuthenticationFailedException exception.
     * 
     * @param message The message of the exception.
     */
    public AuthenticationFailedException(String message) {
        super(MALHelper.AUTHENTICATION_FAILED_ERROR_NUMBER, message);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy