File "UnknownSetterException.php"

Full Path: /home/warrior1/public_html/wp-content-20241001222009/plugins/mailpoet/vendor-prefixed/nesbot/carbon/src/Carbon/Exceptions/UnknownSetterException.php
File size: 411 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 UnknownSetterException extends BaseInvalidArgumentException implements BadMethodCallException
{
 public function __construct($name, $code = 0, Exception $previous = null)
 {
 parent::__construct("Unknown setter '{$name}'", $code, $previous);
 }
}