org.ccsds.moims.mo.mal.AuthorisationFailException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-area001-v003-mal Show documentation
Show all versions of api-area001-v003-mal Show documentation
An implementation of the Java API for the CCSDS MAL
The newest version!
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 extraInformation The extraInformation of the exception.
*/
public AuthorisationFailException(Object extraInformation) {
super(MALHelper.AUTHORISATION_FAIL_ERROR_NUMBER, extraInformation);
}
}