]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/configexception.php
*** Privacy Leak fixed: ***
[quix0rs-gnu-social.git] / lib / configexception.php
1 <?php
2
3 if (!defined('GNUSOCIAL')) { exit(1); }
4
5 /**
6  * Class for configuration exceptions
7  *
8  * Subclass of ServerException for when the site's configuration is malformed.
9  *
10  * @category Exception
11  * @package  GNUsocial
12  * @author   Mikael Nordfeldth <mmn@hethane.se>
13  * @license  https://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
14  * @link     https://gnu.io/social
15  */
16
17 class ConfigException extends ServerException
18 {
19     public function __construct($message=null) {
20         parent::__construct($message, 500);
21     }
22 }