]>
Commit | Line | Data |
---|---|---|
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 | ?> |