Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
tipuloidea
/
back
/
vendor
/
knuckleswtf
/
scribe
/
src
/
Exceptions
:
ProblemParsingValidationRules.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Knuckles\Scribe\Exceptions; use Throwable; class ProblemParsingValidationRules extends \RuntimeException implements ScribeException { public static function forParam(string $paramName, Throwable $innerException): ProblemParsingValidationRules { return new self( "Problem processing validation rules for the param `$paramName`: {$innerException->getMessage()}", 0, $innerException); } }