File "InvalidOptionsException.php"

Full Path: /home/warrior1/public_html/wp-content-20241001222009/plugins/mailpoet/vendor-prefixed/symfony/validator/Exception/InvalidOptionsException.php
File size: 369 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Symfony\Component\Validator\Exception;
if (!defined('ABSPATH')) exit;
class InvalidOptionsException extends ValidatorException
{
 private $options;
 public function __construct(string $message, array $options)
 {
 parent::__construct($message);
 $this->options = $options;
 }
 public function getOptions()
 {
 return $this->options;
 }
}