com.paypal.base.exception.OAuthException 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
/*
* Copyright 2005 PayPal, Inc. All Rights Reserved.
*/
package com.paypal.base.exception;
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