12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class RunQueueBadKeyException extends ClientException
- {
- public $qmkey;
- public function __construct($qmkey)
- {
- $this->qmkey = $qmkey;
- parent::__construct(_('Bad queue manager key was used.'));
- }
- }
|