16 lines
284 B
PHP
16 lines
284 B
PHP
|
<?php
|
||
|
|
||
|
namespace Pheanstalk\Exception;
|
||
|
|
||
|
/**
|
||
|
* An exception originating as a beanstalkd server error
|
||
|
*
|
||
|
* @author Paul Annesley
|
||
|
* @package Pheanstalk
|
||
|
* @license http://www.opensource.org/licenses/mit-license.php
|
||
|
*/
|
||
|
class ServerOutOfMemoryException
|
||
|
extends ServerException
|
||
|
{
|
||
|
}
|