Signed-off-by: Arnaud Porterie (icecrime) <arnaud.porterie@docker.com>
This commit is contained in:
Arnaud Porterie (icecrime) 2016-06-16 17:00:32 -07:00
Родитель f3ed0875cb
Коммит 2b70337c77
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 3D78FAF1AF91D9E9
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 {