com.plaid.client.exception.PlaidServersideUnknownResponseException 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;
import com.plaid.client.response.UnknownResponse;
public class PlaidServersideUnknownResponseException extends RuntimeException {
private UnknownResponse unknownResponse;
private int httpStatusCode;
public PlaidServersideUnknownResponseException(UnknownResponse unknownResponse, int httpStatusCode) {
this.unknownResponse = unknownResponse;
this.httpStatusCode = httpStatusCode;
}
public UnknownResponse getUnknownResponse() {
return unknownResponse;
}
public int getHttpStatusCode() {
return httpStatusCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy