1 <?php
2 namespace Elboletaire\Watimage\Exception;
3
4 class InvalidMimeException extends \Exception
5 {
6 public function __construct($mime, $code = 0, \Exception $previous = null)
7 {
8 return parent::__construct(
9 "Mime type \"{$mime}\" not allowed or not recognised.",
10 $code,
11 $previous
12 );
13 }
14 }
15