com.paypal.exception.BaseException 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.exception;
/**
* BaseException for SDK
*/
public class BaseException extends Exception {
/**
* Serial version UID
*/
private static final long serialVersionUID = -5345825923487658213L;
public BaseException(String msg) {
super(msg);
}
public BaseException(String msg, Throwable exception) {
super(msg, exception);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy