-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
11 changed files
with
328 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace AsyncAws\S3\Exception; | ||
|
||
use AsyncAws\Core\Exception\Http\ClientException; | ||
|
||
/** | ||
* The existing object was created with a different encryption type. Subsequent write requests must include the | ||
* appropriate encryption parameters in the request or while creating the session. | ||
*/ | ||
final class EncryptionTypeMismatchException extends ClientException | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
namespace AsyncAws\S3\Exception; | ||
|
||
use AsyncAws\Core\Exception\Http\ClientException; | ||
|
||
/** | ||
* You may receive this error in multiple cases. Depending on the reason for the error, you may receive one of the | ||
* messages below: | ||
* | ||
* - Cannot specify both a write offset value and user-defined object metadata for existing objects. | ||
* - Checksum Type mismatch occurred, expected checksum Type: sha1, actual checksum Type: crc32c. | ||
* - Request body cannot be empty when 'write offset' is specified. | ||
*/ | ||
final class InvalidRequestException extends ClientException | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
namespace AsyncAws\S3\Exception; | ||
|
||
use AsyncAws\Core\Exception\Http\ClientException; | ||
|
||
/** | ||
* The write offset value that you specified does not match the current object size. | ||
*/ | ||
final class InvalidWriteOffsetException extends ClientException | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace AsyncAws\S3\Exception; | ||
|
||
use AsyncAws\Core\Exception\Http\ClientException; | ||
|
||
/** | ||
* You have attempted to add more parts than the maximum of 10000 that are allowed for this object. You can use the | ||
* CopyObject operation to copy this object to another and then add more data to the newly copied object. | ||
*/ | ||
final class TooManyPartsException extends ClientException | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.