PluginProbe
UpStream: a Project Management Plugin for WordPress / 2.1.0
UpStream: a Project Management Plugin for WordPress v2.1.0
trunk 1.39.0 1.39.1 1.39.2 1.39.3 2.0.7 2.1.0
upstream / includes / class-exception.php

class-exception.php in UpStream: a Project Management Plugin for WordPress 2.1.0, at includes/class-exception.php

23 lines 266 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Upstream Exception.
4 *
5 * @package UpStream
6 */
7
8 namespace UpStream;
9
10 // Prevent direct access.
11 if ( ! defined( 'ABSPATH' ) ) {
12 exit;
13 }
14
15 /**
16 * Upstream Exception.
17 *
18 * @since 1.24.0
19 */
20 class Exception extends \Exception {
21
22 }
23