.circleci
assets
bin
data
inc
admin-pages
api
builders
checkout
compat
contracts
country
database
debug
deprecated
development
domain-mapping
duplication
exception
functions
gateways
class-base-gateway.php
class-base-stripe-gateway.php
class-free-gateway.php
class-ignorable-exception.php
class-manual-gateway.php
class-paypal-gateway.php
class-stripe-checkout-gateway.php
class-stripe-gateway.php
helpers
installers
integrations
internal
invoices
limitations
limits
list-tables
loaders
managers
mercator
models
next
objects
site-templates
sso
tax
traits
ui
updater
class-admin-notices.php
class-admin-themes-compatibility.php
class-ajax.php
class-api.php
class-async-calls.php
class-autoloader.php
class-cron.php
class-current.php
class-dashboard-statistics.php
class-dashboard-widgets.php
class-documentation.php
class-domain-mapping.php
class-faker.php
class-geolocation.php
class-helper.php
class-hooks.php
class-license.php
class-light-ajax.php
class-logger.php
class-maintenance-mode.php
class-newsletter.php
class-requirements.php
class-scripts.php
class-session-cookie.php
class-settings.php
class-sunrise.php
class-user-switching.php
class-views.php
class-whitelabel.php
class-wp-ultimo.php
lang
patches
tests
utils
views
.gitignore
.phpcs.xml.dist
LICENSE
README.md
autoload.php
composer.json
composer.lock
constants.php
loco.xml
phpstan.neon.dist
phpunit.xml.dist
readme.txt
rector.php
sunrise.php
uninstall.php
wp-multisite-waas.php
18 lines
271 B
PHP
18 lines
271 B
PHP
<?php
|
|
/**
|
|
* Ignorable Exception.
|
|
*
|
|
* @package WP_Ultimo
|
|
* @subpackage Gateways
|
|
* @since 2.0.7
|
|
*/
|
|
|
|
namespace WP_Ultimo\Gateways;
|
|
|
|
/**
|
|
* This exception will be caught but will not trigger a 500.
|
|
*
|
|
* @since 2.0.7
|
|
*/
|
|
class Ignorable_Exception extends \Exception {}
|