org.ccsds.moims.mo.mpd.DeliveryFailedException Maven / Gradle / Ivy
The newest version!
package org.ccsds.moims.mo.mpd;
/**
* The DeliveryFailedException exception. An attempt to deliver a product
* file to the nominated address failed.
*/
public final class DeliveryFailedException extends org.ccsds.moims.mo.mal.MOErrorException {
/**
* Constructs a new DeliveryFailedException exception.
*
*/
public DeliveryFailedException() {
super(MPDHelper.DELIVERY_FAILED_ERROR_NUMBER, "");
}
/**
* Constructs a new DeliveryFailedException exception.
*
* @param extraInformation The extraInformation of the exception.
*/
public DeliveryFailedException(Object extraInformation) {
super(MPDHelper.DELIVERY_FAILED_ERROR_NUMBER, extraInformation);
}
}