12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class AlreadyFulfilledException extends ServerException
- {
- public function __construct($msg=null)
- {
- if ($msg === null) {
-
- $msg = _('Trying to do something that was already done.');
- }
- parent::__construct($msg, 409);
- }
- }
|