com.braintreepayments.http.exceptions.JsonParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of braintreehttp Show documentation
Show all versions of braintreehttp Show documentation
This is Braintree's generic http library for generated SDKs
package com.braintreepayments.http.exceptions;
import java.io.IOException;
public class JsonParseException extends IOException {
public JsonParseException(String message) {
super(message);
}
}