File "ImmutableException.php"

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

<?php
namespace MailPoetVendor\Carbon\Exceptions;
if (!defined('ABSPATH')) exit;
use Exception;
use RuntimeException as BaseRuntimeException;
class ImmutableException extends BaseRuntimeException implements RuntimeException
{
 public function __construct($value, $code = 0, Exception $previous = null)
 {
 parent::__construct("{$value} is immutable.", $code, $previous);
 }
}