summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/Exception/FileNotReadableException.php
blob: 83e2ad68fcf33062fc0e333b29dcdd4b1a6939f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

namespace SMW\Exception;

use RuntimeException;

/**
 * @license GNU GPL v2+
 * @since 3.0
 *
 * @author mwjames
 */
class FileNotReadableException extends RuntimeException {

	/**
	 * @since 3.0
	 *
	 * @param string $file
	 */
	public function __construct( $file ) {
		parent::__construct( "$file is not readable." );
	}

}