File "NotLocaleAwareException.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/vendor-prefixed/nesbot/carbon/src/Carbon/Exceptions/NotLocaleAwareException.php
File size: 573 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 NotLocaleAwareException extends BaseInvalidArgumentException implements InvalidArgumentException
{
 public function __construct($object, $code = 0, Exception $previous = null)
 {
 $dump = \is_object($object) ? \get_class($object) : \gettype($object);
 parent::__construct("{$dump} does neither implements Symfony\\Contracts\\Translation\\LocaleAwareInterface nor getLocale() method.", $code, $previous);
 }
}