forked from LiveCarta/PayPal-PHP-SDK
Renaming Namespaces and Organizing Classes
- Updated OpenId classes to be in API namespace - Updated PP Naming Convention to PayPal Naming Convention - FormatConverter Class got its own namespace - Handlers are grouped in Handler namespace - Samples and Tests Updated Accordingly
This commit is contained in:
23
lib/PayPal/Exception/PayPalConfigurationException.php
Normal file
23
lib/PayPal/Exception/PayPalConfigurationException.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace PayPal\Exception;
|
||||
|
||||
/**
|
||||
* Class PayPalConfigurationException
|
||||
*
|
||||
* @package PayPal\Exception
|
||||
*/
|
||||
class PayPalConfigurationException extends \Exception
|
||||
{
|
||||
|
||||
/**
|
||||
* Default Constructor
|
||||
*
|
||||
* @param string|null $message
|
||||
* @param int $code
|
||||
*/
|
||||
public function __construct($message = null, $code = 0)
|
||||
{
|
||||
parent::__construct($message, $code);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user