PATH:
home
/
vcomplcotr
/
www
/
wp-content
/
plugins
/
akeebabackupwp
/
app
/
vendor
/
akeeba
/
s3
/
src
/
Exception
<?php /** * Akeeba Engine * * @package akeebaengine * @copyright Copyright (c)2006-2026 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace Akeeba\S3\Exception; // Protection against direct access defined('AKEEBAENGINE') || die(); use RuntimeException; use Throwable; /** * Invalid response body type */ class InvalidBody extends RuntimeException { public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null) { if (empty($message)) { $message = 'Invalid response body type'; } parent::__construct($message, $code, $previous); } }
[+]
..
[-] CannotGetFile.php
[edit]
[-] InvalidRegion.php
[edit]
[-] CannotOpenFileForWrite.php
[edit]
[-] InvalidSignatureMethod.php
[edit]
[-] ConfigurationError.php
[edit]
[-] CannotOpenFileForRead.php
[edit]
[-] InvalidEndpoint.php
[edit]
[-] CannotDeleteFile.php
[edit]
[-] InvalidAccessKey.php
[edit]
[-] InvalidBody.php
[edit]
[-] PropertyNotFound.php
[edit]
[-] CannotListBuckets.php
[edit]
[-] InvalidSecretKey.php
[edit]
[-] InvalidFilePointer.php
[edit]
[-] CannotGetBucket.php
[edit]
[-] CannotPutFile.php
[edit]