16 lines
267 B
PHP
16 lines
267 B
PHP
|
<?php
|
||
|
|
||
|
namespace Pheanstalk\Exception;
|
||
|
|
||
|
/**
|
||
|
* An exception relating to the connection socket.
|
||
|
*
|
||
|
* @author Paul Annesley
|
||
|
* @package Pheanstalk
|
||
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||
|
*/
|
||
|
class SocketException
|
||
|
extends ClientException
|
||
|
{
|
||
|
}
|