mirror of
https://github.com/minio/minio.git
synced 2024-12-30 09:03:22 -05:00
18 lines
352 B
Go
18 lines
352 B
Go
package disk
|
|
|
|
// InvalidArgument invalid argument
|
|
type InvalidArgument struct{}
|
|
|
|
func (e InvalidArgument) Error() string {
|
|
return "Invalid argument"
|
|
}
|
|
|
|
// UnsupportedFilesystem unsupported filesystem type
|
|
type UnsupportedFilesystem struct {
|
|
Type string
|
|
}
|
|
|
|
func (e UnsupportedFilesystem) Error() string {
|
|
return "Unsupported filesystem: " + e.Type
|
|
}
|