1
0
mirror of https://github.com/minio/mc.git synced 2025-11-14 23:42:27 +03:00

Prefix error messages with mc: part of #286

This commit is contained in:
Harshavardhana
2015-04-16 15:53:21 -07:00
parent 0702f392ba
commit 0935573255
9 changed files with 46 additions and 36 deletions

View File

@@ -18,6 +18,14 @@ package main
import "fmt"
type errInvalidTheme struct {
theme string
}
func (e errInvalidTheme) Error() string {
return "invalid theme: " + e.theme
}
type errInvalidArgument struct{}
func (e errInvalidArgument) Error() string {