com.paypal.sdk.exceptions.OAuthException 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
/*
* Copyright 2005 PayPal, Inc. All Rights Reserved.
*/
package com.paypal.sdk.exceptions;
public class OAuthException extends PayPalException{
/**
* Constructs a new exception with the specified detail message.
*/
public OAuthException(String message)
{
super(message);
this.message = message;
}
public OAuthException(String message, Throwable throwable) {
super(message, throwable);
this.message = message;
}
public String getError() {
return message;
}
private String message;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy