mirror of
https://github.com/minio/minio.git
synced 2025-11-29 13:28:17 -05:00
ACL driver/storage layer support
This commit is contained in:
@@ -54,6 +54,17 @@ type DigestError struct {
|
||||
Md5 string
|
||||
}
|
||||
|
||||
/// ACL related errors
|
||||
|
||||
// InvalidACL - acl invalid
|
||||
type InvalidACL struct {
|
||||
ACL string
|
||||
}
|
||||
|
||||
func (e InvalidACL) Error() string {
|
||||
return "Requested ACL is " + e.ACL + " invalid"
|
||||
}
|
||||
|
||||
/// Bucket related errors
|
||||
|
||||
// BucketNameInvalid - bucketname provided is invalid
|
||||
|
||||
Reference in New Issue
Block a user