| 1 |
<?php |
| 2 |
/** |
| 3 |
* Part of JsonMapper |
| 4 |
* |
| 5 |
* PHP version 5 |
| 6 |
* |
| 7 |
* @category Netresearch |
| 8 |
* @package JsonMapper |
| 9 |
* @author Christian Weiske <cweiske@cweiske.de> |
| 10 |
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 |
| 11 |
* @link http://cweiske.de/ |
| 12 |
*/ |
| 13 |
|
| 14 |
/** |
| 15 |
* Simple exception |
| 16 |
* |
| 17 |
* @category Netresearch |
| 18 |
* @package JsonMapper |
| 19 |
* @author Christian Weiske <cweiske@cweiske.de> |
| 20 |
* @license OSL-3.0 http://opensource.org/licenses/osl-3.0 |
| 21 |
* @link http://cweiske.de/ |
| 22 |
*/ |
| 23 |
class JsonMapper_Exception extends Exception |
| 24 |
{ |
| 25 |
} |
| 26 |
?> |
| 27 |
|