17 lines
427 B
PHP
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);
|
|
}
|
|
}
|