Files
wp-multisite-waas/dependencies/amphp/http-client/src/ParseException.php
2024-11-30 18:24:12 -07:00

17 lines
427 B
PHP

<?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);
}
}