assets
data
dependencies
amphp
amp
lib
Internal
Loop
Internal
Driver.php
DriverFactory.php
EvDriver.php
EventDriver.php
InvalidWatcherError.php
NativeDriver.php
TracingDriver.php
UnsupportedFeatureException.php
UvDriver.php
Watcher.php
CallableMaker.php
CancellationToken.php
CancellationTokenSource.php
CancelledException.php
Coroutine.php
Deferred.php
Delayed.php
Emitter.php
Failure.php
InvalidYieldError.php
Iterator.php
LazyPromise.php
Loop.php
MultiReasonException.php
NullCancellationToken.php
Producer.php
Promise.php
Struct.php
Success.php
TimeoutCancellationToken.php
TimeoutException.php
functions.php
byte-stream
cache
dns
hpack
http
http-client
parser
process
serialization
socket
sync
windows-registry
berlindb
composer
daverandom
delight-im
doctrine
guzzlehttp
hashids
ifsnop
jasny
kelunik
league
mexitek
mpdf
myclabs
nesbot
nyholm
pablo-sg-pacheco
paragonie
phpdocumentor
phpseclib
phpstan
psr
rakit
ralouphie
remotelyliving
rpnzl
scssphp
setasign
spatie
stripe
symfony
webmozart
woocommerce
yahnis-elsts
autoload.php
scoper-autoload.php
inc
lang
views
.gitignore
LICENSE
autoload.php
composer.json
constants.php
loco.xml
readme.txt
sunrise.php
uninstall.php
wp-multisite-waas.php
13 lines
296 B
PHP
13 lines
296 B
PHP
<?php
|
|
|
|
namespace WP_Ultimo\Dependencies\Amp\Loop;
|
|
|
|
/**
|
|
* MUST be thrown if a feature is not supported by the system.
|
|
*
|
|
* This might happen if ext-pcntl is missing and the loop driver doesn't support another way to dispatch signals.
|
|
*/
|
|
class UnsupportedFeatureException extends \Exception
|
|
{
|
|
}
|