File "ParseErrorException.php"

Full Path: /home/warrior1/public_html/wp-content-20241001222009/plugins/mailpoet/vendor-prefixed/nesbot/carbon/src/Carbon/Exceptions/ParseErrorException.php
File size: 535 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Carbon\Exceptions;
if (!defined('ABSPATH')) exit;
use Exception;
use InvalidArgumentException as BaseInvalidArgumentException;
class ParseErrorException extends BaseInvalidArgumentException implements InvalidArgumentException
{
 public function __construct($expected, $actual, $help = '', $code = 0, Exception $previous = null)
 {
 $actual = $actual === '' ? 'data is missing' : "get '{$actual}'";
 parent::__construct(\trim("Format expected {$expected} but {$actual}\n{$help}"), $code, $previous);
 }
}