aboutsummaryrefslogtreecommitdiff
path: root/lib/Minz/PermissionDeniedException.php
blob: 91a4b310e2042b74142ad794855bfe8dd6fd9167 (plain)
1
2
3
4
5
6
7
8
<?php
class Minz_PermissionDeniedException extends Minz_Exception {
	public function __construct(string $file_name, int $code = self::ERROR) {
		$message = 'Permission is denied for `' . $file_name.'`';

		parent::__construct ($message, $code);
	}
}