quickfix.MessageParseError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quickfixj-core Show documentation
Show all versions of quickfixj-core Show documentation
The core QuickFIX/J engine
The newest version!
package quickfix;
public class MessageParseError extends Exception {
public MessageParseError() {
super();
}
public MessageParseError(String message, Throwable cause) {
super(message, cause);
}
public MessageParseError(String message) {
super(message);
}
}