mirror of
https://github.com/ZeJMaN/LBCAlerte_ynh.git
synced 2025-07-06 11:50:48 +02:00
Initial commit
Functional, without SSO
This commit is contained in:
34
sources/lib/Config/Lite/Exception.php
Normal file
34
sources/lib/Config/Lite/Exception.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/**
|
||||
* Config_Lite_Exception (Config/Lite/Exception.php)
|
||||
*
|
||||
* PHP version 5
|
||||
*
|
||||
* @file Config/Lite/Exception.php
|
||||
* @category Configuration
|
||||
* @package Config_Lite
|
||||
* @author Patrick C. Engel <pce@php.net>
|
||||
* @copyright 2010-2011 <pce@php.net>
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version SVN: $Id$
|
||||
* @link https://github.com/pce/config_lite
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Config_Lite_Exception
|
||||
*
|
||||
* Interface implemented by Exceptions
|
||||
*
|
||||
* @category Configuration
|
||||
* @package Config_Lite
|
||||
* @author Patrick C. Engel <pce@php.net>
|
||||
* @copyright 2010-2011 <pce@php.net>
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version Release: 0.1.5
|
||||
* @link https://github.com/pce/config_lite
|
||||
*/
|
||||
|
||||
interface Config_Lite_Exception
|
||||
{
|
||||
}
|
35
sources/lib/Config/Lite/Exception/InvalidArgument.php
Normal file
35
sources/lib/Config/Lite/Exception/InvalidArgument.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* Config_Lite_Exception_InvalidArgument (Config/Lite/Exception/InvalidArgument.php)
|
||||
*
|
||||
* PHP version 5
|
||||
*
|
||||
* @file Config/Lite/Exception/InvalidArgument.php
|
||||
* @category Configuration
|
||||
* @package Config_Lite
|
||||
* @author Patrick C. Engel <pce@php.net>
|
||||
* @copyright 2010-2011 <pce@php.net>
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version SVN: $Id$
|
||||
* @link https://github.com/pce/config_lite
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Config_Lite_Exception_InvalidArgument
|
||||
*
|
||||
* implements Config_Lite_Exception
|
||||
*
|
||||
* @category Configuration
|
||||
* @package Config_Lite
|
||||
* @author Patrick C. Engel <pce@php.net>
|
||||
* @copyright 2010-2011 <pce@php.net>
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version Release: 0.1.5
|
||||
* @link https://github.com/pce/config_lite
|
||||
*/
|
||||
class Config_Lite_Exception_InvalidArgument
|
||||
extends RuntimeException
|
||||
implements Config_Lite_Exception
|
||||
{
|
||||
}
|
36
sources/lib/Config/Lite/Exception/Runtime.php
Normal file
36
sources/lib/Config/Lite/Exception/Runtime.php
Normal file
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
/**
|
||||
* Config_Lite_Exception_Runtime (Config/Lite/Exception/Runtime.php)
|
||||
*
|
||||
* PHP version 5
|
||||
*
|
||||
* @file Config/Lite/Exception/Runtime.php
|
||||
* @category Configuration
|
||||
* @package Config_Lite
|
||||
* @author Patrick C. Engel <pce@php.net>
|
||||
* @copyright 2010-2011 <pce@php.net>
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version SVN: $Id$
|
||||
* @link https://github.com/pce/config_lite
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Config_Lite_Exception_Runtime
|
||||
*
|
||||
* implements Config_Lite_Exception
|
||||
*
|
||||
* @category Configuration
|
||||
* @package Config_Lite
|
||||
* @author Patrick C. Engel <pce@php.net>
|
||||
* @copyright 2010-2011 <pce@php.net>
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version Release: 0.1.5
|
||||
* @link https://github.com/pce/config_lite
|
||||
*/
|
||||
|
||||
class Config_Lite_Exception_Runtime
|
||||
extends RuntimeException
|
||||
implements Config_Lite_Exception
|
||||
{
|
||||
}
|
36
sources/lib/Config/Lite/Exception/UnexpectedValue.php
Normal file
36
sources/lib/Config/Lite/Exception/UnexpectedValue.php
Normal file
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
/**
|
||||
* Config_Lite_Exception_UnexpectedValue (Config/Lite/Exception/UnexpectedValue.php)
|
||||
*
|
||||
* PHP version 5
|
||||
*
|
||||
* @file Config/Lite/Exception/UnexpectedValue.php
|
||||
* @category Configuration
|
||||
* @package Config_Lite
|
||||
* @author Patrick C. Engel <pce@php.net>
|
||||
* @copyright 2010-2011 <pce@php.net>
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version SVN: $Id$
|
||||
* @link https://github.com/pce/config_lite
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* Config_Lite_Exception_UnexpectedValue
|
||||
*
|
||||
* implements Config_Lite_Exception
|
||||
*
|
||||
* @category Configuration
|
||||
* @package Config_Lite
|
||||
* @author Patrick C. Engel <pce@php.net>
|
||||
* @copyright 2010-2011 <pce@php.net>
|
||||
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
||||
* @version Release: 0.1.5
|
||||
* @link https://github.com/pce/config_lite
|
||||
*/
|
||||
|
||||
class Config_Lite_Exception_UnexpectedValue
|
||||
extends UnexpectedValueException
|
||||
implements Config_Lite_Exception
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user