| 
<?php/**
 * This file contains the TextException class.
 *
 * PHP Version 5.3
 *
 * @category Text
 * @package  Text
 * @author   Gonzalo Chumillas <gonzalo@soloproyectos.com>
 * @license  https://raw.github.com/soloproyectos/core/master/LICENSE BSD 2-Clause License
 * @link     https://github.com/soloproyectos/core
 */
 namespace com\soloproyectos\common\text\exception;
 use Exception;
 
 /**
 * This file contains the TextException class.
 *
 * @author Gonzalo Chumillas <gonzalo@soloproyectos.com>
 * @package parser
 */
 
 /**
 * class TextException
 *
 * @category Text
 * @package  Text
 * @author   Gonzalo Chumillas <gonzalo@soloproyectos.com>
 * @license  https://raw.github.com/soloproyectos/core/master/LICENSE BSD 2-Clause License
 * @link     https://github.com/soloproyectos/core
 */
 class TextException extends Exception
 {
 
 }
 
 |