Initial Commit

This commit is contained in:
David Stone
2024-11-30 18:24:12 -07:00
commit e8f7955c1c
5432 changed files with 1397750 additions and 0 deletions

View File

@ -0,0 +1,16 @@
<?php
namespace WP_Ultimo\Dependencies\Amp\Http\Client;
final class ParseException extends HttpException
{
/**
* @param string $message
* @param int $code
* @param \Throwable|null $previousException
*/
public function __construct(string $message, int $code, \Throwable $previousException = null)
{
parent::__construct($message, $code, $previousException);
}
}