]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/unknownmimeextensionexception.php
*** Privacy Leak fixed: ***
[quix0rs-gnu-social.git] / lib / unknownmimeextensionexception.php
1 <?php
2 if (!defined('GNUSOCIAL')) { exit(1); }
3
4 /**
5  * Class for unknown MIME extension exception
6  *
7  * Thrown when we don't know the file extension for a given MIME type.
8  * This generally means that all files are accepted since if we have
9  * a list of known MIMEs then they have extensions coupled to them.
10  *
11  * @category Exception
12  * @package  GNUsocial
13  * @author   Mikael Nordfeldth <mmn@hethane.se>
14  * @license  https://www.gnu.org/licenses/agpl-3.0.html
15  * @link     https://gnu.io/social
16  */
17
18 class UnknownMimeExtensionException extends ServerException
19 {
20     public function __construct($mimetype)
21     {
22         // TRANS: We accept the file type (we probably just accept all files)
23         // TRANS: but don't know the file extension for it.
24         $msg = sprintf(_('Supported mimetype but unknown extension relation: %1$s'), _ve($mimetype));
25         parent::__construct($msg);
26     }
27 }