com.imiconnect.connect.core.ConnectException 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;
import javax.annotation.Nullable;
/**
* Generic exception that can be thrown from any of the clients when an unresolvable error occurs.
*/
public class ConnectException extends RuntimeException {
public ConnectException(Throwable cause) {
super(cause);
}
public ConnectException(String message) {
this(message, null);
}
public ConnectException(String message, @Nullable Throwable cause) {
super(message, cause);
}
}