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