123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class NoRouteMapException extends Exception
- {
- public $path;
- public function __construct($path)
- {
- $this->path = $path;
- parent::__construct(sprintf(_('Could not find a handler for the given path %s.'), _ve($this->path)));
- }
- }
|