]> git.datanom.net - omvzfs.git/blob - src/Exception.php
Minor change to clarify shared folder creation.
[omvzfs.git] / src / Exception.php
1 <?php
2
3 /**
4 * OMVModuleZFSException class
5 *
6 * @author Michael Rasmussen
7 * @version 0.1
8 * @copyright Michael Rasmussen <mir@datanom.net>
9 * @abstract
10 */
11 class OMVModuleZFSException extends Exception {
12
13 /**
14 * XXX
15 *
16 * @param Disk $disk XXX
17 * @return void XXX
18 * @access public
19 */
20 public function __construct($message = "", $code = 0, Exception $previous = NULL) {
21 parent::__construct($message, $code, $previous);
22 }
23
24 }
25
26 ?>
This page took 0.073288 seconds and 6 git commands to generate.