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

com.paypal.sdk.exceptions.OAuthException 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
/*
 * 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 - 2024 Weber Informatics LLC | Privacy Policy