com.paypal.sdk.exceptions.PayPalException 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;
/**
* A PayPalException is thrown to signal a problem during SDK execution.
* @author PayPal DTS
*/
public abstract class PayPalException extends Exception
{
/*
* Default constructor
*/
public PayPalException()
{
super();
}
/*
* Constructs a new exception with the specified detail message.
*/
public PayPalException(String message)
{
super(message);
}
/*
* Constructs a new exception with the specified detail message and cause.
*/
public PayPalException(String message, Throwable cause)
{
super(message, cause);
}
} // PayPalException
© 2015 - 2025 Weber Informatics LLC | Privacy Policy