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