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
:
GroupNotFound.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Knuckles\Scribe\Exceptions; class GroupNotFound extends \RuntimeException implements ScribeException { public static function forTag(string $groupName, string $tag) { return new self( <<<MESSAGE You specified the group "$groupName" in a "$tag" field in one of your custom endpoints, but we couldn't find that group. Did you rename the group? MESSAGE ); } }