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