18 lines
349 B
PHP
18 lines
349 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Thrown if there are no merchant details at all
|
||
|
*
|
||
|
* @see \EDD\Gateways\PayPal\MerchantAccount
|
||
|
*
|
||
|
* @package easy-digital-downloads
|
||
|
* @copyright Copyright (c) 2021, Sandhills Development, LLC
|
||
|
* @license GPL2+
|
||
|
* @since 2.11
|
||
|
*/
|
||
|
|
||
|
namespace EDD\Gateways\PayPal\Exceptions;
|
||
|
|
||
|
class MissingMerchantDetails extends \Exception {
|
||
|
|
||
|
}
|