All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.polyapi.client.error.invocation.PolyInvocationException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy