Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
vendor
/
spatie
/
image
/
src
/
Exceptions
:
CouldNotConvert.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Spatie\Image\Exceptions; use Exception; class CouldNotConvert extends Exception { public static function unknownManipulation(string $operationName): self { return new self("Can not convert image. Unknown operation `{$operationName}` used"); } }