Improve error string and remove unneeded else clause

This commit is contained in:
Gustav Simonsson
2015-08-28 03:42:01 +02:00
parent 829201382b
commit d9addf79fa
3 changed files with 6 additions and 7 deletions

View File

@ -65,16 +65,16 @@ func NewNotImplementedError(method string) *NotImplementedError {
}
type NotReadyError struct {
Method string
Resource string
}
func (e *NotReadyError) Error() string {
return fmt.Sprintf("%s method not ready", e.Method)
return fmt.Sprintf("%s not ready", e.Resource)
}
func NewNotReadyError(method string) *NotReadyError {
func NewNotReadyError(resource string) *NotReadyError {
return &NotReadyError{
Method: method,
Resource: resource,
}
}