src/CancelledException.php source

1 <?php
2
3 namespace phasync;
4
5 use phasync\Internal\RethrowExceptionTrait;
6
7 /**
8 * The operation that was being awaited has been cancelled.
9 */
10 class CancelledException extends \RuntimeException implements RethrowExceptionInterface
11 {
12 use RethrowExceptionTrait;
13 }
14