FillMessageException.java
package fr.sii.ogham.core.exception.filler;
import static fr.sii.ogham.core.CoreConstants.SERIAL_VERSION_UID;
import fr.sii.ogham.core.exception.MessageException;
import fr.sii.ogham.core.message.Message;
/**
* The developer may not provide all fields of the message in its code. Some
* values may be automatically filled.
*
* This exception is thrown when there is an issue while filling the message.
*
* @author Aurélien Baudet
*
*/
public class FillMessageException extends MessageException {
private static final long serialVersionUID = SERIAL_VERSION_UID;
public FillMessageException(String message, Message msg, Throwable cause) {
super(message, msg, cause);
}
public FillMessageException(String message, Message msg) {
super(message, msg);
}
public FillMessageException(Throwable cause, Message msg) {
super(cause, msg);
}
}