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

com.paypal.base.exception.PayPalException Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy