PluginProbe
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts / 2.3.1
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts v2.3.1
2.7.7 2.7.6 2.7.5 2.7.4 trunk 1.3 2.0.4 2.0.6 2.1.91 2.2.4 2.2.7 2.2.9 2.3.1 2.3.10 2.4.10 2.4.2 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 2.4.9 2.6.0 2.6.1 2.7.0 All 28 releases
insert-php / includes / jsonmapper / exceptions / class-exception.php

class-exception.php in Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts 2.3.1, at includes/jsonmapper/exceptions/class-exception.php

35 lines 688 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Part of WINP\JsonMapper\Mapper
4 *
5 * PHP version 5
6 *
7 * @author Christian Weiske <cweiske@cweiske.de>
8 * @package WINP\JsonMapper\Mapper
9 * @category Netresearch
10 * @license OSL-3.0 http://opensource.org/licenses/osl-3.0
11 * @link http://cweiske.de/
12 */
13
14 namespace WINP\JsonMapper;
15
16 // Exit if accessed directly
17 if ( ! defined( 'ABSPATH' ) ) {
18 exit;
19 }
20
21 /**
22 * Simple exception
23 *
24 * @author Christian Weiske <cweiske@cweiske.de>
25 * @package WINP\JsonMapper\Mapper
26 * @category Netresearch
27 * @license OSL-3.0 http://opensource.org/licenses/osl-3.0
28 * @link http://cweiske.de/
29 */
30 class Exception extends \Exception {
31
32 }
33
34 ?>
35