org.ccsds.moims.mo.mal.UnknownException 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 UnknownException exception. Operation specific.
*/
public final class UnknownException extends org.ccsds.moims.mo.mal.MOErrorException {
/**
* Constructs a new UnknownException exception.
*
*/
public UnknownException() {
super(MALHelper.UNKNOWN_ERROR_NUMBER, "");
}
/**
* Constructs a new UnknownException exception.
*
* @param extraInformation The extraInformation of the exception.
*/
public UnknownException(Object extraInformation) {
super(MALHelper.UNKNOWN_ERROR_NUMBER, extraInformation);
}
}