mirror of
https://github.com/danog/amp.git
synced 2024-12-03 09:57:51 +01:00
16 lines
400 B
PHP
16 lines
400 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Exception thrown when destroying a fiber. This exception cannot be caught by user code.
|
||
|
*/
|
||
|
final class FiberExit extends Exception
|
||
|
{
|
||
|
/**
|
||
|
* Constructor throws to prevent user code from throwing FiberExit.
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
|
throw new \Error('The "FiberExit" class is reserved for internal use and cannot be manually instantiated');
|
||
|
}
|
||
|
}
|