summaryrefslogtreecommitdiff
path: root/manager/library/date/exception.HumanReadableTimeException.php
blob: 2698d586c632e82af9e219823e4e418c2a5161ab (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
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/**
 * @package SLS
 * @subpackage CONFIG.EXCEPTION
 */

/**
 * required files
 * @ignore
 */
require_once(LIBRARY_PATH . '/exception/exception.Base.php');

/**
 * Exceptions thrown in the DNSSEC library classes
 *
 * @package SLS
 * @subpackage CONFIG.EXCEPTION
 * @author Markus Warg <mw@it-sls.de>
 * @since 2009-02-25 13:05
 * @version $Id: exception.HumanReadableTimeException.php 91 2010-03-10 10:36:25Z markus $
 */
class HumanReadableTimeException extends BaseException {
    /**
     * make new object
     *
	 * @access public
     * @param string $message
     * @param int $code
     * @param string $extra
     */
	/*
    public function __construct($message,$code = 0,$extra = '') {
        parent::__construct($message,$code, $extra);
    }
    */
}
?>