org.ccsds.moims.mo.mal.UnsupportedAreaVersionException Maven / Gradle / Ivy
package org.ccsds.moims.mo.mal;
/**
* The UnsupportedAreaVersionException exception. The destination does not support the
* selected area version.
*/
public final class UnsupportedAreaVersionException extends org.ccsds.moims.mo.mal.MOErrorException {
/**
* Constructs a new UnsupportedAreaVersionException exception.
*
*/
public UnsupportedAreaVersionException() {
super(MALHelper.UNSUPPORTED_AREA_VERSION_ERROR_NUMBER, "");
}
/**
* Constructs a new UnsupportedAreaVersionException exception.
*
* @param message The message of the exception.
*/
public UnsupportedAreaVersionException(String message) {
super(MALHelper.UNSUPPORTED_AREA_VERSION_ERROR_NUMBER, message);
}
}