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

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