OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
Xpress
/
vendor
/
aws
/
aws-sdk-php
/
src
/
Exception
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:17 AM
rwxr-xr-x
📄
AwsException.php
7.12 KB
05/19/2025 10:07:17 AM
rw-r--r--
📄
CommonRuntimeException.php
103 bytes
05/19/2025 10:07:17 AM
rw-r--r--
📄
CouldNotCreateChecksumException.php
1.07 KB
05/19/2025 10:07:17 AM
rw-r--r--
📄
CredentialsException.php
245 bytes
05/19/2025 10:07:17 AM
rw-r--r--
📄
CryptoException.php
202 bytes
05/19/2025 10:07:17 AM
rw-r--r--
📄
CryptoPolyfillException.php
144 bytes
05/19/2025 10:07:17 AM
rw-r--r--
📄
EventStreamDataException.php
821 bytes
05/19/2025 10:07:17 AM
rw-r--r--
📄
IncalculablePayloadException.php
253 bytes
05/19/2025 10:07:17 AM
rw-r--r--
📄
InvalidJsonException.php
245 bytes
05/19/2025 10:07:17 AM
rw-r--r--
📄
InvalidRegionException.php
247 bytes
05/19/2025 10:07:17 AM
rw-r--r--
📄
MultipartUploadException.php
1.91 KB
05/19/2025 10:07:17 AM
rw-r--r--
📄
TokenException.php
239 bytes
05/19/2025 10:07:17 AM
rw-r--r--
📄
UnresolvedApiException.php
247 bytes
05/19/2025 10:07:17 AM
rw-r--r--
📄
UnresolvedEndpointException.php
252 bytes
05/19/2025 10:07:17 AM
rw-r--r--
📄
UnresolvedSignatureException.php
253 bytes
05/19/2025 10:07:17 AM
rw-r--r--
Editing: CouldNotCreateChecksumException.php
Close
<?php namespace Aws\Exception; use Aws\HasMonitoringEventsTrait; use Aws\MonitoringEventsInterface; class CouldNotCreateChecksumException extends \RuntimeException implements MonitoringEventsInterface { use HasMonitoringEventsTrait; public function __construct($algorithm, \Exception $previous = null) { $prefix = $algorithm === 'md5' ? "An" : "A"; parent::__construct("{$prefix} {$algorithm} checksum could not be " . "calculated for the provided upload body, because it was not " . "seekable. To prevent this error you can either 1) include the " . "ContentMD5 or ContentSHA256 parameters with your request, 2) " . "use a seekable stream for the body, or 3) wrap the non-seekable " . "stream in a GuzzleHttp\\Psr7\\CachingStream object. You " . "should be careful though and remember that the CachingStream " . "utilizes PHP temp streams. This means that the stream will be " . "temporarily stored on the local disk.", 0, $previous); } }