18 lines
352 B
PHP
18 lines
352 B
PHP
<?php
|
|
/**
|
|
* Authentication Exception
|
|
*
|
|
* Will be thrown if PayPal API credentials are missing or invalid.
|
|
*
|
|
* @package easy-digital-downloads
|
|
* @copyright Copyright (c) 2021, Sandhills Development, LLC
|
|
* @license GPL2+
|
|
* @since 2.11
|
|
*/
|
|
|
|
namespace EDD\Gateways\PayPal\Exceptions;
|
|
|
|
class Authentication_Exception extends \Exception {
|
|
|
|
}
|