PluginProbe
Metricool – Social media and site statistics / trunk
Metricool – Social media and site statistics vtrunk
2.1.0 2.0.2 2.0.1 2.0.0 1.27 trunk
metricool / app / Support / Validation / Exceptions / RuleFailedException.php

RuleFailedException.php in Metricool – Social media and site statistics trunk, at app/Support/Validation/Exceptions/RuleFailedException.php

15 lines 319 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 declare(strict_types=1);
4
5 namespace Metricool\Support\Validation\Exceptions;
6
7 /**
8 * This exception is thrown when a validation rule fails. It is caught by the
9 * {@see \Metricool\Support\Validation\Validator} which collects the messages
10 * per field.
11 */
12 class RuleFailedException extends \RuntimeException
13 {
14 }
15