io.polyapi.client.error.invocation.PolyInvocationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of library Show documentation
Show all versions of library Show documentation
Java client library for Poly API
The newest version!
package io.polyapi.client.error.invocation;
import io.polyapi.client.error.PolyApiLibraryException;
/**
* Parent class of all the exceptions thrown during the invocation of a Poly function.
*/
public class PolyInvocationException extends PolyApiLibraryException {
public PolyInvocationException(String message, Throwable cause) {
super(message, cause);
}
}