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