mirror of
https://github.com/proelements/proelements.git
synced 2026-04-06 04:13:48 +00:00
19 lines
331 B
PHP
19 lines
331 B
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
|
|
);
|
|
}
|
|
}
|