Initial Commit
This commit is contained in:
16
dependencies/amphp/http-client/src/ParseException.php
vendored
Normal file
16
dependencies/amphp/http-client/src/ParseException.php
vendored
Normal 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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user