FileNotExistException.php 264 B

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