org.ccsds.moims.mo.mpd.UnknownException Maven / Gradle / Ivy
The newest version!
package org.ccsds.moims.mo.mpd;
/**
* The UnknownException exception. The referenced item (user or orderID) does
* not exist.
*/
public final class UnknownException extends org.ccsds.moims.mo.mal.MOErrorException {
/**
* Constructs a new UnknownException exception.
*
*/
public UnknownException() {
super(MPDHelper.UNKNOWN_ERROR_NUMBER, "");
}
/**
* Constructs a new UnknownException exception.
*
* @param extraInformation The extraInformation of the exception.
*/
public UnknownException(Object extraInformation) {
super(MPDHelper.UNKNOWN_ERROR_NUMBER, extraInformation);
}
}