Initial commit

Functional, without SSO
This commit is contained in:
Jimmy Monin
2016-09-18 11:03:26 +02:00
commit 57708e3169
253 changed files with 30787 additions and 0 deletions

View 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
{
}