Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**
3
 * @package PayPal
4
 *
5
 * $Id: Error.php 696 2011-09-08 09:08:23Z tiefland $
6
 */
7
 
8
/**
9
 * Load parent class.
10
 */
11
require_once 'PEAR.php';
12
 
13
/**
14
 * A standard PayPal Error object
15
 *
16
 * @package  PayPal
17
 */
18
class PayPal_Error extends PEAR_Error {
19
 
20
	/**
21
	 * Standard error constructor
22
	 *
23
     * @param string The error message
24
     * @param int An optional integer error code
25
	 */
26
	function PayPal_Error($message, $errorcode = null)
27
	{
28
		parent::PEAR_error($message, $errorcode);
29
	}
30
 
31
}