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