1
0
mirror of https://github.com/danog/amp.git synced 2024-12-02 17:37:50 +01:00
amp/lib/DisposedException.php
2020-09-24 12:53:30 -05:00

16 lines
380 B
PHP

<?php
namespace Amp;
/**
* Will be thrown from {@see StreamSource::emit()} or the emit callable provided by {@see AsyncGenerator} if the
* associated stream is destroyed.
*/
final class DisposedException extends \Exception
{
public function __construct(\Throwable $previous = null)
{
parent::__construct("The stream has been disposed", 0, $previous);
}
}