HttpClientException.php
TLDR
This file defines the HttpClientException
class, which extends the base Exception
class.
Classes
HttpClientException
The HttpClientException
class extends the base Exception
class. It is used to represent exceptions that occur in the Laravel HTTP client.
<?php
namespace Illuminate\Http\Client;
use Exception;
class HttpClientException extends Exception
{
//
}