2020-08-31 01:27:08 +08:00
|
|
|
<?php
|
2020-10-29 18:17:25 +08:00
|
|
|
declare(strict_types=1);
|
2020-08-31 01:27:08 +08:00
|
|
|
|
2021-08-17 16:43:50 +08:00
|
|
|
namespace Http\Exception;
|
2020-08-31 01:27:08 +08:00
|
|
|
|
|
|
|
|
|
2021-03-01 17:16:52 +08:00
|
|
|
/**
|
|
|
|
|
* Class RequestException
|
2021-08-17 16:43:50 +08:00
|
|
|
* @package Http\Exception
|
2021-03-01 17:16:52 +08:00
|
|
|
*/
|
2020-08-31 01:27:08 +08:00
|
|
|
class RequestException extends \Exception
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|