Merge pull request #285 from icecrime/node_not_found

Add nodeNotFound NotFound()
This commit is contained in:
Vincent Demeester 2016-06-17 09:31:37 +02:00 коммит произвёл GitHub
Родитель f3ed0875cb 2b70337c77
Коммит f90ecdb1e9
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -131,6 +131,11 @@ func (e nodeNotFoundError) Error() string {
return fmt.Sprintf("Error: No such node: %s", e.nodeID)
}
// NoFound indicates that this error type is of NotFound
func (e nodeNotFoundError) NotFound() bool {
return true
}
// IsErrNodeNotFound returns true if the error is caused
// when a node is not found.
func IsErrNodeNotFound(err error) bool {