com.paypal.base.exception.MissingCredentialException 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;
/**
* MissingCredentialException is throw when the credential used are wrongly
* configured or not found in the application properties
*
*/
public class MissingCredentialException extends BaseException {
/**
* Serial versio UID
*/
private static final long serialVersionUID = -2345825926387658303L;
public MissingCredentialException(String message) {
super(message);
}
public MissingCredentialException(String message, Throwable exception) {
super(message, exception);
}
}