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: EventStreamDataException.php
Close
<?php namespace Aws\Exception; /** * Represents an exception that was supplied via an EventStream. */ class EventStreamDataException extends \RuntimeException { private $errorCode; private $errorMessage; public function __construct($code, $message) { $this->errorCode = $code; $this->errorMessage = $message; parent::__construct($message); } /** * Get the AWS error code. * * @return string|null Returns null if no response was received */ public function getAwsErrorCode() { return $this->errorCode; } /** * Get the concise error message if any. * * @return string|null */ public function getAwsErrorMessage() { return $this->errorMessage; } }