You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
352 B
18 lines
352 B
10 years ago
|
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
|
||
|
}
|