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
:
CannotResize.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Spatie\Image\Exceptions; use Exception; class CannotResize extends Exception { public static function invalidWidth(): self { return new self('This resize would result in width being 0.'); } public static function invalidHeight(): self { return new self('This resize would result in height being 0.'); } }