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 com.liferay.commerce.payment.method.paypal
Show all versions of com.liferay.commerce.payment.method.paypal
Liferay Commerce Payment Method PayPal
The newest version!
/*
* 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