com.paypal.core.rest.PayPalRESTException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paypal-core Show documentation
Show all versions of paypal-core Show documentation
PayPal Java SDK Core library base and common to PayPal SDKs. The paypal-core library is a dependency for all PayPal related Java SDKs
package com.paypal.core.rest;
/**
* PayPalException handles all exceptions related to REST services
*/
public class PayPalRESTException extends Exception {
/**
* Serial Version ID
*/
private static final long serialVersionUID = 1L;
public PayPalRESTException(String message) {
super(message);
}
public PayPalRESTException(String message, Throwable throwable) {
super(message, throwable);
}
public PayPalRESTException(Throwable throwable) {
super(throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy