<?php 
/** 
 * This file contains the CssException class. 
 *  
 * PHP Version 5.3 
 *  
 * @category CSS 
 * @package  Css 
 * @author   Gonzalo Chumillas <[email protected]> 
 * @license  https://raw2.github.com/soloproyectos/php.common-libs/master/LICENSE BSD 2-Clause License 
 * @link     https://github.com/soloproyectos/php.common-libs 
 */ 
namespace com\soloproyectos\common\css\exception; 
use Exception; 
 
/** 
 * Class CssException. 
 *  
 * @category CSS 
 * @package  Css 
 * @author   Gonzalo Chumillas <[email protected]> 
 * @license  https://raw2.github.com/soloproyectos/php.common-libs/master/LICENSE BSD 2-Clause License 
 * @link     https://github.com/soloproyectos/php.common-libs 
 */ 
class CssException extends Exception 
{ 
     
} 
 
 |