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

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

The newest version!
package org.ccsds.moims.mo.mal;

/**
 * The DestinationUnknownException exception. Destination cannot be contacted. 
 */
public final class DestinationUnknownException extends org.ccsds.moims.mo.mal.MOErrorException {

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

    /**
     * Constructs a new DestinationUnknownException exception.
     * 
     * @param extraInformation The extraInformation of the exception.
     */
    public DestinationUnknownException(Object extraInformation) {
        super(MALHelper.DESTINATION_UNKNOWN_ERROR_NUMBER, extraInformation);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy