. // }}} namespace App\Util\Exception; use InvalidArgumentException; class FileNotAllowedException extends InvalidArgumentException { public function __construct(string $mimetype) { parent::__construct("File mimetype not allowed: '{$mimetype}'."); } }