1
0
mirror of https://github.com/minio/mc.git synced 2025-11-13 12:22:45 +03:00

error messages update

This commit is contained in:
Anand Babu (AB) Periasamy
2015-08-22 02:47:35 -07:00
parent 7629faa2e6
commit 154c229324
2 changed files with 23 additions and 23 deletions

View File

@@ -26,7 +26,7 @@ func (e errNotAnObject) Error() string {
return "URL: " + e.url + " not an object"
}
var errInvalidArgument = errors.New("Invalid arguments provided, cannot proceed")
var errInvalidArgument = errors.New("Invalid arguments provided, cannot proceed.")
type errInvalidGlobURL struct {
glob string
@@ -34,7 +34,7 @@ type errInvalidGlobURL struct {
}
func (e errInvalidGlobURL) Error() string {
return "Error reading glob URL " + e.glob + " while comparing with " + e.request
return "Error reading glob URL " + e.glob + " while comparing with " + e.request + "."
}
type errNoMatchingHost struct {
@@ -42,7 +42,7 @@ type errNoMatchingHost struct {
}
func (e errNoMatchingHost) Error() string {
return "No matching host found for the given url " + e.url + ""
return "No matching host found for the given url " + e.url + "."
}
type errInitClient struct {
@@ -50,7 +50,7 @@ type errInitClient struct {
}
func (e errInitClient) Error() string {
return "Unable to initialize client for url " + e.url + ""
return "Unable to initialize client for url " + e.url + "."
}
type errInvalidURL struct {