18 lines
304 B
PHP
18 lines
304 B
PHP
<?php
|
|
/**
|
|
* API Exception
|
|
*
|
|
* Thrown when an API request has failed.
|
|
*
|
|
* @package easy-digital-downloads
|
|
* @copyright Copyright (c) 2021, Sandhills Development, LLC
|
|
* @license GPL2+
|
|
* @since 2.11
|
|
*/
|
|
|
|
namespace EDD\Gateways\PayPal\Exceptions;
|
|
|
|
class API_Exception extends \Exception {
|
|
|
|
}
|