2016-05-13 23:41:54 +02:00
|
|
|
<?php
|
|
|
|
|
2017-03-10 19:19:32 +01:00
|
|
|
namespace Amp\Loop;
|
2016-05-13 23:41:54 +02:00
|
|
|
|
|
|
|
/**
|
2016-09-21 18:05:59 +02:00
|
|
|
* MUST be thrown if a feature is not supported by the system.
|
2016-05-19 17:20:57 +02:00
|
|
|
*
|
2016-09-21 18:05:59 +02:00
|
|
|
* This might happen if ext-pcntl is missing and the loop driver doesn't support another way to dispatch signals.
|
2016-05-13 23:41:54 +02:00
|
|
|
*/
|
2020-10-09 19:37:37 +02:00
|
|
|
final class UnsupportedFeatureException extends \Exception
|
2018-06-18 20:00:01 +02:00
|
|
|
{
|
2016-05-16 11:33:58 +02:00
|
|
|
}
|