1
0
mirror of https://github.com/danog/amp.git synced 2024-12-12 01:19:46 +01:00
amp/lib/DisposedException.php

16 lines
382 B
PHP
Raw Normal View History

2020-05-13 17:15:21 +02:00
<?php
namespace Amp;
/**
* Will be thrown from {@see StreamSource::yield()} or the yield 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);
}
}