🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 20:39:34 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Captcha
/
Validator
📍 /home/therahul/thedasstores.com/wp-content/plugins/mailpoet/lib/Captcha/Validator
🔄 Refresh
✏️
Editing: ValidationError.php
Writable
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing namespace MailPoet\Captcha\Validator; if (!defined('ABSPATH')) exit; class ValidationError extends \RuntimeException { private $meta = []; public function __construct( $message = "", array $meta = [], $code = 0, \Throwable $previous = null ) { $this->meta = $meta; $this->meta['error'] = $message; parent::__construct($message, $code, $previous); } public function getMeta(): array { return $this->meta; } }
💾 Save Changes
❌ Cancel