Skip to content

Commit aaa58c9

Browse files
committed
Standard exception message.
1 parent 0d88882 commit aaa58c9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/FireFS/Exceptions/FileSystemEntityNotFoundException.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,8 @@
3434

3535
class FileSystemEntityNotFoundException extends \Exception
3636
{
37-
37+
public function __construct(string $path)
38+
{
39+
parent::__construct("Unable to find the entity at path \"{$path}\"");
40+
}
3841
}

0 commit comments

Comments
 (0)