
<center><h2><strong>Ubuntu</strong></h2>
­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?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
		);
	}
}
