FileNotExistException.php 227 B

12345678
  1. <?php
  2. class Minz_FileNotExistException extends Minz_Exception {
  3. public function __construct ($file_name, $code = self::ERROR) {
  4. $message = 'File not found: `' . $file_name.'`';
  5. parent::__construct ($message, $code);
  6. }
  7. }