mirror of
https://github.com/guzzle/guzzle.git
synced 2025-07-26 09:20:21 +02:00
18 lines
334 B
PHP
18 lines
334 B
PHP
<?php
|
|
/**
|
|
* @package Guzzle PHP <http://www.guzzlephp.org>
|
|
* @license See the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Guzzle\Http;
|
|
|
|
use Guzzle\Common\GuzzleException;
|
|
|
|
/**
|
|
* Http exception
|
|
*
|
|
* @author michael@guzzlephp.org
|
|
*/
|
|
class HttpException extends \Exception implements GuzzleException
|
|
{
|
|
} |