File "ActionScheduler_InvalidActionException.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor/woocommerce/action-scheduler/classes/ActionScheduler_InvalidActionException.php
File size: 695 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
if (!defined('ABSPATH')) exit;
class ActionScheduler_InvalidActionException extends \InvalidArgumentException implements ActionScheduler_Exception {
 public static function from_schedule( $action_id, $schedule ) {
 $message = sprintf(
 __( 'Action [%1$s] has an invalid schedule: %2$s', 'action-scheduler' ),
 $action_id,
 var_export( $schedule, true )
 );
 return new static( $message );
 }
 public static function from_decoding_args( $action_id, $args = array() ) {
 $message = sprintf(
 __( 'Action [%1$s] has invalid arguments. It cannot be JSON decoded to an array. $args = %2$s', 'action-scheduler' ),
 $action_id,
 var_export( $args, true )
 );
 return new static( $message );
 }
}