com.paypal.base.exception.InvalidCredentialException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api-sdk Show documentation
Show all versions of rest-api-sdk Show documentation
PayPal SDK for integrating with the REST APIs
The newest version!
package com.paypal.base.exception;
/**
* InvalidCredentialException used to denote errors in credentials used in API
* call
*
*/
public class InvalidCredentialException extends BaseException {
/**
* Serial version UID
*/
private static final long serialVersionUID = -4321565982347658546L;
public InvalidCredentialException(String msg) {
super(msg);
}
public InvalidCredentialException(String msg, Throwable exception) {
super(msg, exception);
}
}