123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- if (!defined('GNUSOCIAL')) {
- exit(1);
- }
- class MethodNotImplementedException extends ServerException
- {
- public function __construct($method)
- {
- parent::__construct(sprintf(_('Method %s not implemented'), $method));
- }
- }
|