mirror of
https://github.com/danog/amp.git
synced 2024-12-12 17:37:34 +01:00
16 lines
382 B
PHP
16 lines
382 B
PHP
|
<?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);
|
||
|
}
|
||
|
}
|