12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class RunQueueOutOfWorkException extends ServerException
- {
- public function __construct()
- {
- parent::__construct(_('Opportunistic queue manager is out of work (no more items).'));
- }
- }
|