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);
}
}