org.ccsds.moims.mo.mal.UnsupportedOperationException 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 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 extraInformation The extraInformation of the exception.
*/
public UnsupportedOperationException(Object extraInformation) {
super(MALHelper.UNSUPPORTED_OPERATION_ERROR_NUMBER, extraInformation);
}
}