File "RuleErrorException.php"

Full Path: /home/warrior1/public_html/plugins/file-manager/vendor/bitapps/wp-validator/src/Exception/RuleErrorException.php
File size: 311 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace BitApps\WPValidator\Exception;

use Exception;

class RuleErrorException extends \Exception

{
    public function __construct($ruleName, $code = 0, Exception $previous = null)
    {
        parent::__construct(sprintf("Unsupported validation rule: %s.", $ruleName), $code, $previous);
    }
}