blob: 4672f6a3d1c4afe8e141b6768bd7e96a37294e57 (
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
|
<?php
/**
* @author markus
* $Id: $
*/
/**
* required files
* @ignore
*/
require_once(LIBRARY_PATH . '/exception/exception.Base.php');
/**
* Exceptions thrown in the IMAP classes
*
* @package SLS
* @subpackage CONFIG.EXCEPTION
* @author Markus Warg <mw@it-sls.de>
*/
class IMAPException 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);
}
*/
}
|