mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
13 lines
274 B
PHP
13 lines
274 B
PHP
<?php
|
|
|
|
namespace 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 {
|
|
|
|
}
|