File Editor
Directories:
.. (Back)
EasyDigitalDownloads
Elementor
Integrations
MemberPress
Plugins
Promos
Rules
Shortcodes
WPForms
WooCommerce
Files:
Actions.php
Ajax.php
Api.php
ApiAuth.php
ApiKey.php
AssetLoader.php
BaseRestApi.php
Blocks.php
ClassicEditor.php
ConstantContact.php
Debug.php
EasyDigitalDownloads.php
Elementor.php
Inserter.php
InstallSkin.php
InstallSkinCompat.php
MailPoet.php
MemberPress.php
Menu.php
Notifications.php
OmuApi.php
Output.php
Pages.php
Partners.php
Plugins.php
Promos.php
Refresh.php
RestApi.php
RevenueAttribution.php
Review.php
Rules.php
Save.php
Shortcode.php
Sites.php
Support.php
Type.php
Urls.php
Utils.php
Validate.php
WPForms.php
Welcome.php
Widget.php
WooCommerce.php
WpErrorException.php
Create New File
Create
Edit File: WpErrorException.php
<?php /** * WP_Error Exception class. * * @since 2.0.0 * * @package OMAPI * @author Justin Sternberg */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /** * WP_Error Exception class. * * @since 2.0.0 */ class OMAPI_WpErrorException extends Exception { /** * The WP_Error object to this exception. * * @since 2.0.0 * * @var null|WP_Error */ protected $wp_error = null; /** * Sets the WP_Error object to this exception. * * @since 2.0.0 * * @param WP_Error $error The WP_Error object. */ public function setWpError( WP_Error $error ) { $this->wp_error = $error; return $this; } public function getWpError() { return $this->wp_error; } }
Save Changes
Rename File
Rename