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

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

package org.ccsds.moims.mo.mal;

/**
 * The AuthorisationFailException exception. A failure in the MAL to authorise the message. 
 */
public final class AuthorisationFailException extends org.ccsds.moims.mo.mal.MOErrorException {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy