com.plaid.client.exception.PlaidCommunicationsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plaid-java Show documentation
Show all versions of plaid-java Show documentation
Bindings for the Plaid (plaid.com) API.
package com.plaid.client.exception;
public class PlaidCommunicationsException extends RuntimeException {
public PlaidCommunicationsException(String message, Throwable cause) {
super(message, cause);
}
public PlaidCommunicationsException(String message) {
super(message);
}
public PlaidCommunicationsException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy