update bug daashboards
This commit is contained in:
15
vendor/knuckleswtf/scribe/src/Exceptions/ProblemParsingValidationRules.php
vendored
Normal file
15
vendor/knuckleswtf/scribe/src/Exceptions/ProblemParsingValidationRules.php
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace Knuckles\Scribe\Exceptions;
|
||||
|
||||
class ProblemParsingValidationRules extends \RuntimeException implements ScribeException
|
||||
{
|
||||
public static function forParam(string $paramName, \Throwable $innerException): self
|
||||
{
|
||||
return new self(
|
||||
"Problem processing validation rules for the param `{$paramName}`: {$innerException->getMessage()}",
|
||||
0,
|
||||
$innerException
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user