del(crm): unused error.go

This commit is contained in:
Tit Petric
2018-08-15 22:10:15 +02:00
parent af3a677ffb
commit 44e3bf1dc7
-13
View File
@@ -1,13 +0,0 @@
package repository
type (
repositoryError string
)
const (
ErrDatabaseError = repositoryError("DatabaseError")
)
func (e repositoryError) Error() string {
return "repository." + string(e)
}