?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/demo2-old/wp-content/plugins/elementor-pro/core/integrations/exceptions/



?? Go up: /home/webdevt/www/demo2-old/wp-content/plugins/elementor-pro/core/integrations

?? Viewing: action-failed-exception.php

<?php

namespace ElementorPro\Core\Integrations\Exceptions;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

class Action_Failed_Exception extends Exception_Base {

	protected function format_message( $message ) {
		return sprintf(
			'Action `%s` failed to run: %s',
			$this->action,
			$message
		);
	}
}


??

??