Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
spatie
/
image
/
src
/
Exceptions
:
UnsupportedImageFormat-20250318113842.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Spatie\Image\Exceptions; use Exception; class UnsupportedImageFormat extends Exception { public static function make(string $extension): self { return new self("Unsupported format `{$extension}`."); } }