Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php
/**
 * @package PayPal
 *
 * $Id: Error.php 696 2011-09-08 09:08:23Z tiefland $
 */

/**
 * Load parent class.
 */
require_once 'PEAR.php';

/**
 * A standard PayPal Error object
 *
 * @package  PayPal
 */
class PayPal_Error extends PEAR_Error {

        /**
         * Standard error constructor
         *
     * @param string The error message
     * @param int An optional integer error code
         */
        function PayPal_Error($message, $errorcode = null)
        {
                parent::PEAR_error($message, $errorcode);
        }

}