io.hcxprotocol.exception.ServerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hcx-integrator-sdk Show documentation
Show all versions of hcx-integrator-sdk Show documentation
The SDK for HCX Participant System to help in integrating with HCX Gateway easily.
package io.hcxprotocol.exception;
/**
* The exception to capture the unknown errors.
*/
public class ServerException extends Exception{
public ServerException(String message) {
super(message);
}
}