Files
gnu-social/vendor/php-http/client-common/src/Exception/ClientErrorException.php
2021-07-16 19:44:33 +01:00

15 lines
245 B
PHP

<?php
namespace Http\Client\Common\Exception;
use Http\Client\Exception\HttpException;
/**
* Thrown when there is a client error (4xx).
*
* @author Joel Wurtz <joel.wurtz@gmail.com>
*/
class ClientErrorException extends HttpException
{
}