12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class UseFileAsThumbnailException extends UnsupportedMediaException
- {
- public $file = null;
- public function __construct(File $file)
- {
- $this->file = $file;
- parent::__construct('Thumbnail not generated', $this->file->getPath());
- }
- }
|