11 lines
174 B
PHP
11 lines
174 B
PHP
|
<?php
|
||
|
|
||
|
namespace Guzzle\Http\Exception;
|
||
|
|
||
|
use Guzzle\Common\Exception\GuzzleException;
|
||
|
|
||
|
/**
|
||
|
* Http exception interface
|
||
|
*/
|
||
|
interface HttpException extends GuzzleException {}
|