org.ccsds.moims.mo.mal.DeliveryDelayedException 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 DeliveryDelayedException exception. Message queued somewhere awaiting
* contact.
*/
public final class DeliveryDelayedException extends org.ccsds.moims.mo.mal.MOErrorException {
/**
* Constructs a new DeliveryDelayedException exception.
*
*/
public DeliveryDelayedException() {
super(MALHelper.DELIVERY_DELAYED_ERROR_NUMBER, "");
}
/**
* Constructs a new DeliveryDelayedException exception.
*
* @param extraInformation The extraInformation of the exception.
*/
public DeliveryDelayedException(Object extraInformation) {
super(MALHelper.DELIVERY_DELAYED_ERROR_NUMBER, extraInformation);
}
}