12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class FileNotFoundException extends ServerException
- {
- public $path = null;
- public function __construct($path)
- {
- $this->path = $path;
- common_debug('File not found exception for: '._ve($this->path));
- parent::__construct(_('File not found in filesystem.'), 404);
- }
- }
|