All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ccsds.moims.mo.mal.TransactionTimeoutException Maven / Gradle / Ivy

package org.ccsds.moims.mo.mal;

/**
 * The TransactionTimeoutException exception. The interaction exceeded a certain timeout 
 * duration. 
 */
public final class TransactionTimeoutException extends org.ccsds.moims.mo.mal.MOErrorException {

    /**
     * Constructs a new TransactionTimeoutException exception.
     * 
     */
    public TransactionTimeoutException() {
        super(MALHelper.TRANSACTION_TIMEOUT_ERROR_NUMBER, "");
    }

    /**
     * Constructs a new TransactionTimeoutException exception.
     * 
     * @param message The message of the exception.
     */
    public TransactionTimeoutException(String message) {
        super(MALHelper.TRANSACTION_TIMEOUT_ERROR_NUMBER, message);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy