org.ccsds.moims.mo.mal.BadEncodingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-area001-v003-mal Show documentation
Show all versions of api-area001-v003-mal Show documentation
An implementation of the Java API for the CCSDS MAL
The newest version!
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 extraInformation The extraInformation of the exception.
*/
public BadEncodingException(Object extraInformation) {
super(MALHelper.BAD_ENCODING_ERROR_NUMBER, extraInformation);
}
}