| 1234567891011121314151617181920 |
- <?php
- namespace Luracast\Restler\Data;
- use Exception;
- /**
- * Invalid Exception
- *
- * @category Framework
- * @package Restler
- * @author R.Arul Kumaran <arul@luracast.com>
- * @copyright 2010 Luracast
- * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
- * @link http://luracast.com/products/restler/
- *
- */
- class Invalid extends Exception
- {
- }
|