mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-28 23:59:57 +09:00
10 lines
183 B
PHP
10 lines
183 B
PHP
<?php
|
|
|
|
namespace GuzzleHttp\Promise;
|
|
|
|
/**
|
|
* Exception that is set as the reason for a promise that has been cancelled.
|
|
*/
|
|
class CancellationException extends RejectionException
|
|
{
|
|
}
|