<?php 
/** 
 * This file is part of Soloproyectos common library. 
 * 
 * @author  Gonzalo Chumillas <[email protected]> 
 * @license https://github.com/soloproyectos/php.common-libs/blob/master/LICENSE BSD 2-Clause License 
 * @link    https://github.com/soloproyectos/php.common-libs 
 */ 
namespace com\soloproyectos\common\text\exception; 
use \Exception; 
 
/** 
 * class TextException 
 * 
 * @package Text\Exception 
 * @author  Gonzalo Chumillas <[email protected]> 
 * @license https://github.com/soloproyectos/php.common-libs/blob/master/LICENSE BSD 2-Clause License 
 * @link    https://github.com/soloproyectos/php.common-libs 
 */ 
class TextException extends Exception 
{ 
 
} 
 
 |