com.imiconnect.connect.core.parser.ParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connect-sdk-java Show documentation
Show all versions of connect-sdk-java Show documentation
IMIConnect platform Java SDK client library.
The newest version!
package com.imiconnect.connect.core.parser;
import com.imiconnect.connect.core.ConnectException;
/** Exception thrown when either the request or response could not be (de)serialized. */
public class ParseException extends ConnectException {
public ParseException(String message, Throwable cause) {
super(message, cause);
}
}