1 <?php
2 namespace Elboletaire\Watimage\Exception;
3
4 class FileNotExistException extends \Exception
5 {
6 public function __construct($file, $code = 0, \Exception $previous = null)
7 {
8 return parent::__construct(
9 "Specified {$file} does not exist.",
10 $code,
11 $previous
12 );
13 }
14 }
15