src/TimeoutException.php source

1 <?php
2
3 namespace phasync;
4
5 use phasync\Internal\RethrowExceptionTrait;
6
7 class TimeoutException extends \RuntimeException implements RethrowExceptionInterface
8 {
9 use RethrowExceptionTrait;
10 }
11