1234567891011121314151617181920 |
- <?php
- /**
- * This file is part of amfPHP
- *
- * LICENSE
- *
- * This source file is subject to the license that is bundled
- * with this package in the file license.txt.
- */
- /**
- * just a type to distinguish between Amfphp exceptions and any other exceptions
- *
- * @package Amfphp_Core
- * @author Ariel Sommeria-klein
- */
- class Amfphp_Core_Exception extends Exception {
-
- }
- ?>
|