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

org.ccsds.moims.mo.mpd.InvalidException Maven / Gradle / Ivy

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

/**
 * The InvalidException exception. A field in the message contains an invalid 
 * value.  If there are multiple errors, the first invalid field is reported. 
 */
public final class InvalidException extends org.ccsds.moims.mo.mal.MOErrorException {

    /**
     * Constructs a new InvalidException exception.
     * 
     */
    public InvalidException() {
        super(MPDHelper.INVALID_ERROR_NUMBER, "");
    }

    /**
     * Constructs a new InvalidException exception.
     * 
     * @param extraInformation The extraInformation of the exception.
     */
    public InvalidException(Object extraInformation) {
        super(MPDHelper.INVALID_ERROR_NUMBER, extraInformation);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy