File "MethodNotFoundException.php"

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

<?php

namespace BitApps\WPValidator\Exception;

use Exception;

class MethodNotFoundException extends \Exception

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