mirror of
https://github.com/danog/amp.git
synced 2025-01-22 21:31:18 +01:00
10 lines
203 B
PHP
10 lines
203 B
PHP
|
<?php
|
||
|
|
||
|
use Interop\Async\EventLoop;
|
||
|
|
||
|
/**
|
||
|
* Must be thrown if an optional feature is not supported by the current driver
|
||
|
* or system.
|
||
|
*/
|
||
|
class UnsupportedFeatureException extends \RuntimeException { }
|