123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class NoQueueHandlerException extends ServerException
- {
- public $transport;
- public function __construct($transport)
- {
- $this->transport = $transport;
- parent::__construct(sprintf(_('No queue handler found for transport %s.'), _ve($this->transport)));
- }
- }
|