com.paypal.base.exception.PayPalException 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
The newest version!
/*
* Copyright 2005 PayPal, Inc. All Rights Reserved.
*/
package com.paypal.base.exception;
/**
* A PayPalException is thrown to signal a problem during SDK execution.
*/
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