]> git.datanom.net - omvzfs.git/blob - src/Exception.php
Refactored to mimic zpool create
[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(string $message = "", int $code = 0, Exception $previous = NULL) {
21 parent::__construct(string $message = "", int $code = 0, Exception $previous = NULL);
22 }
23
24 }
25
26 ?>
This page took 0.057134 seconds and 6 git commands to generate.