minio/pkg/storage/storage_errors.go

87 lines
1.7 KiB
Go
Raw Normal View History

2015-01-21 02:16:06 -05:00
package storage
2015-01-27 21:43:55 -05:00
type BackendError struct {
Path string
}
2015-01-21 02:16:06 -05:00
type GenericError struct {
2015-01-21 15:44:09 -05:00
Bucket string
Path string
2015-01-21 02:16:06 -05:00
}
type ObjectExists struct {
2015-01-21 15:44:09 -05:00
Bucket string
Key string
2015-01-21 02:16:06 -05:00
}
type ObjectNotFound GenericObjectError
2015-01-21 03:50:23 -05:00
type GenericBucketError struct {
2015-01-21 15:44:09 -05:00
Bucket string
2015-01-21 03:50:23 -05:00
}
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,
}
}
2015-01-27 21:43:55 -05:00
type BackendCorrupted BackendError
type BucketNameInvalid GenericBucketError
type BucketExists GenericBucketError
type BucketNotFound GenericBucketError
type ObjectNameInvalid GenericObjectError
2015-01-21 02:16:06 -05:00
func (self ObjectNotFound) Error() string {
return "Object not Found: " + self.Bucket + "#" + self.Object
2015-01-21 02:16:06 -05:00
}
func (self ObjectExists) Error() string {
2015-01-21 15:44:09 -05:00
return "Object exists: " + self.Bucket + "#" + self.Key
2015-01-21 02:16:06 -05:00
}
2015-01-21 03:50:23 -05:00
func (self BucketNameInvalid) Error() string {
2015-01-21 15:44:09 -05:00
return "Bucket name invalid: " + self.Bucket
2015-01-21 03:50:23 -05:00
}
func (self BucketExists) Error() string {
2015-01-21 15:44:09 -05:00
return "Bucket exists: " + self.Bucket
2015-01-21 03:50:23 -05:00
}
func (self BucketNotFound) Error() string {
return "Bucket not Found: " + self.Bucket
}
func (self ObjectNameInvalid) Error() string {
return "Object name invalid: " + self.Bucket + "#" + self.Object
}
2015-01-27 21:43:55 -05:00
func (self BackendCorrupted) Error() string {
return "Backend corrupted: " + self.Path
}