Removing engine.ErrDataNotFound in favor of domain.ErrNotFound

This commit is contained in:
Deluan
2016-03-23 18:15:14 -04:00
parent c50b0bdc48
commit 1ed8c60130
10 changed files with 15 additions and 19 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ func (c *cover) Get(id string, size int, out io.Writer) error {
}
if err != nil {
return ErrDataNotFound
return domain.ErrNotFound
}
if size > 0 {