All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.paypal.exception.InvalidCredentialException Maven / Gradle / Ivy

Go to download

PayPal Java SDK Core library base and common to PayPal SDKs. The paypal-core library is a dependency for all PayPal related Java SDKs

There is a newer version: 1.7.2
Show newest version
package com.paypal.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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy