aboutsummaryrefslogtreecommitdiff
path: root/lib/Minz/FileNotExistException.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Minz/FileNotExistException.php')
-rw-r--r--lib/Minz/FileNotExistException.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Minz/FileNotExistException.php b/lib/Minz/FileNotExistException.php
index f8dfbdf66..f97f161af 100644
--- a/lib/Minz/FileNotExistException.php
+++ b/lib/Minz/FileNotExistException.php
@@ -2,7 +2,7 @@
class Minz_FileNotExistException extends Minz_Exception {
public function __construct ($file_name, $code = self::ERROR) {
$message = 'File not found: `' . $file_name.'`';
-
+
parent::__construct ($message, $code);
}
}