mirror of
https://github.com/danog/amp.git
synced 2025-01-22 13:21:16 +01:00
13 lines
193 B
PHP
13 lines
193 B
PHP
|
<?php
|
||
|
|
||
|
namespace Amp;
|
||
|
|
||
|
/**
|
||
|
* Will be thrown in case an operation is cancelled.
|
||
|
*
|
||
|
* @see CancellationToken
|
||
|
* @see CancellationTokenSource
|
||
|
*/
|
||
|
class CancelledException extends \Exception {
|
||
|
}
|