11 lines
132 B
PHP
11 lines
132 B
PHP
<?php
|
|
|
|
namespace Http\Message;
|
|
|
|
/**
|
|
* An interface implemented by all HTTP message related exceptions.
|
|
*/
|
|
interface Exception
|
|
{
|
|
}
|