mirror of https://github.com/minio/minio.git
103 lines
2.3 KiB
Go
103 lines
2.3 KiB
Go
/*
|
|
* Mini Object Storage, (C) 2015 Minio, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package storage
|
|
|
|
type BackendError struct {
|
|
Path string
|
|
}
|
|
|
|
type GenericError struct {
|
|
Bucket string
|
|
Path string
|
|
}
|
|
|
|
type ObjectExists struct {
|
|
Bucket string
|
|
Key string
|
|
}
|
|
|
|
type ObjectNotFound GenericObjectError
|
|
|
|
type GenericBucketError struct {
|
|
Bucket string
|
|
}
|
|
|
|
type GenericObjectError struct {
|
|
Bucket string
|
|
Object string
|
|
}
|
|
|
|
type ImplementationError struct {
|
|
Bucket string
|
|
Object string
|
|
Err error
|
|
}
|
|
|
|
func (self ImplementationError) Error() string {
|
|
error := ""
|
|
if self.Bucket != "" {
|
|
error = error + "Bucket: " + self.Bucket + " "
|
|
}
|
|
if self.Object != "" {
|
|
error = error + "Object: " + self.Object + " "
|
|
}
|
|
error = error + "Error: " + self.Err.Error()
|
|
return error
|
|
}
|
|
|
|
func EmbedError(bucket, object string, err error) ImplementationError {
|
|
return ImplementationError{
|
|
Bucket: bucket,
|
|
Object: object,
|
|
Err: err,
|
|
}
|
|
}
|
|
|
|
type BackendCorrupted BackendError
|
|
type BucketNameInvalid GenericBucketError
|
|
type BucketExists GenericBucketError
|
|
type BucketNotFound GenericBucketError
|
|
type ObjectNameInvalid GenericObjectError
|
|
|
|
func (self ObjectNotFound) Error() string {
|
|
return "Object not Found: " + self.Bucket + "#" + self.Object
|
|
}
|
|
|
|
func (self ObjectExists) Error() string {
|
|
return "Object exists: " + self.Bucket + "#" + self.Key
|
|
}
|
|
|
|
func (self BucketNameInvalid) Error() string {
|
|
return "Bucket name invalid: " + self.Bucket
|
|
}
|
|
|
|
func (self BucketExists) Error() string {
|
|
return "Bucket exists: " + self.Bucket
|
|
}
|
|
|
|
func (self BucketNotFound) Error() string {
|
|
return "Bucket not Found: " + self.Bucket
|
|
}
|
|
|
|
func (self ObjectNameInvalid) Error() string {
|
|
return "Object name invalid: " + self.Bucket + "#" + self.Object
|
|
}
|
|
|
|
func (self BackendCorrupted) Error() string {
|
|
return "Backend corrupted: " + self.Path
|
|
}
|