mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 21:38:39 +00:00
24 lines
401 B
PHP
24 lines
401 B
PHP
<?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);
|
|
}
|
|
}
|