- Created CHANGELOG.md to maintain version history. - Added README.md with usage instructions for the trigger_deprecation() function. - Initialized composer.json for the Symfony Deprecation Contracts library, specifying dependencies and autoloading.
13 lines
224 B
PHP
13 lines
224 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PShowSsoScoped\GuzzleHttp\Promise;
|
|
|
|
/**
|
|
* Exception that is set as the reason for a promise that has been cancelled.
|
|
*/
|
|
class CancellationException extends RejectionException
|
|
{
|
|
}
|