]> git.datanom.net - omvzfs.git/blame - src/Exception.php
Implemented getName method in Dataset class
[omvzfs.git] / src / Exception.php
CommitLineData
63617ac2
MR
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 */
11class 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.029549 seconds and 5 git commands to generate.