Introduce a ConfigException

This commit is contained in:
Mikael Nordfeldth
2016-03-02 12:33:06 +01:00
parent 9534969c05
commit d6598e790c
3 changed files with 29 additions and 5 deletions

22
lib/configexception.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
if (!defined('GNUSOCIAL')) { exit(1); }
/**
* Class for configuration exceptions
*
* Subclass of ServerException for when the site's configuration is malformed.
*
* @category Exception
* @package GNUsocial
* @author Mikael Nordfeldth <mmn@hethane.se>
* @license https://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link https://gnu.io/social
*/
class ConfigException extends ServerException
{
public function __construct($message=null) {
parent::__construct($message, 500);
}
}