mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 18:16:38 +08:00
21 lines
392 B
PHP
21 lines
392 B
PHP
<?php
|
|
/**
|
|
* The Not Found Exception for the Settings Container.
|
|
*
|
|
* @package Inpsyde\PayPalCommerce\WcGateway\Exception
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Inpsyde\PayPalCommerce\WcGateway\Exception;
|
|
|
|
use Exception;
|
|
use Psr\Container\NotFoundExceptionInterface;
|
|
|
|
/**
|
|
* Class NotFoundException
|
|
*/
|
|
class NotFoundException extends Exception implements NotFoundExceptionInterface {
|
|
|
|
|
|
}
|