mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00
17 lines
341 B
PHP
17 lines
341 B
PHP
<?php
|
|
|
|
namespace Amp;
|
|
|
|
/**
|
|
* Will be thrown in case an operation is cancelled.
|
|
*
|
|
* @see CancellationToken
|
|
* @see CancellationTokenSource
|
|
*/
|
|
class CancelledException extends \Exception
|
|
{
|
|
public function __construct(?\Throwable $previous = null)
|
|
{
|
|
parent::__construct("The operation was cancelled", 0, $previous);
|
|
}
|
|
}
|