mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-17 20:52:12 -05:00
17 lines
277 B
PHP
17 lines
277 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
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>
|
|
*/
|
|
final class ClientErrorException extends HttpException
|
|
{
|
|
}
|