File "BadFluentSetterException.php"

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

<?php
namespace MailPoetVendor\Carbon\Exceptions;
if (!defined('ABSPATH')) exit;
use BadMethodCallException as BaseBadMethodCallException;
use Exception;
class BadFluentSetterException extends BaseBadMethodCallException implements BadMethodCallException
{
 public function __construct($method, $code = 0, Exception $previous = null)
 {
 parent::__construct(\sprintf("Unknown fluent setter '%s'", $method), $code, $previous);
 }
}