master

laravel/framework

Last updated at: 29/12/2023 09:23

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
{
    //
}