org.ccsds.moims.mo.mal.DeliveryTimedoutException Maven / Gradle / Ivy
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 message The message of the exception.
*/
public DeliveryTimedoutException(String message) {
super(MALHelper.DELIVERY_TIMEDOUT_ERROR_NUMBER, message);
}
}