1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 09:27:46 +01:00
amp/lib/Loop/UnsupportedFeatureException.php

13 lines
273 B
PHP
Raw Normal View History

<?php
2017-03-10 19:19:32 +01:00
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.
*/
2018-06-18 20:00:01 +02:00
class UnsupportedFeatureException extends \Exception
{
2016-05-16 11:33:58 +02:00
}