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