1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class UseFileAsThumbnailException extends UnsupportedMediaException
- {
- public $file = null;
- public function __construct($file_id)
- {
- $this->file = File::getKV('id', $file_id);
- if (!$this->file instanceof File) {
- throw new ServerException('No File ID supplied to exception');
- }
- parent::__construct('Thumbnail not generated', $this->file->getPath());
- }
- }
|