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

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

package org.ccsds.moims.mo.mal;

/**
 * The BadEncodingException exception. The destination was unable to decode the message. 
 */
public final class BadEncodingException extends org.ccsds.moims.mo.mal.MOErrorException {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy