20 lines
317 B
PHP
20 lines
317 B
PHP
<?php
|
|
/**
|
|
* WP Ultimo Runtime Exception
|
|
*
|
|
* @package WP_Ultimo\Exception
|
|
* @since 2.0.11
|
|
*/
|
|
|
|
namespace WP_Ultimo\Exception;
|
|
|
|
// Exit if accessed directly
|
|
defined('ABSPATH') || exit;
|
|
|
|
/**
|
|
* Runtime Exception
|
|
*
|
|
* @since 2.0.11
|
|
*/
|
|
class Runtime_Exception extends \Exception {} // end class Runtime_Exception;
|