12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class UnsupportedMediaException extends ServerException
- {
- public function __construct($msg, $path=null)
- {
-
- parent::__construct($msg);
- }
- }
|