-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes BucketExists' return value and StatObject's returned exceptions (…
…#987) * fixes error messages for BucketExists and StatObject * lint changes * adds required format changes * for debugging workfloww only build failure * possible fix for build failure * another try for the timing issue * debug trial for the build timing issue * yet another try for the timing issue * more lint changes --------- Co-authored-by: Ersan Bozduman <[email protected]>
- Loading branch information
Showing
11 changed files
with
181 additions
and
108 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using Minio.DataModel.Result; | ||
|
||
namespace Minio.Exceptions; | ||
|
||
[Serializable] | ||
public class PreconditionFailedException : MinioException | ||
{ | ||
public PreconditionFailedException() | ||
{ | ||
} | ||
|
||
public PreconditionFailedException(string message, Exception innerException) : base(message, innerException) | ||
{ | ||
} | ||
|
||
public PreconditionFailedException(ResponseResult serverResponse) : base(serverResponse) | ||
{ | ||
} | ||
|
||
public PreconditionFailedException(string message) : base(message) | ||
{ | ||
} | ||
|
||
public PreconditionFailedException(string message, ResponseResult serverResponse) : base(message, serverResponse) | ||
{ | ||
} | ||
} |
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.