diff --git a/crm/repository/error.go b/crm/repository/error.go deleted file mode 100644 index 85114c9fe..000000000 --- a/crm/repository/error.go +++ /dev/null @@ -1,13 +0,0 @@ -package repository - -type ( - repositoryError string -) - -const ( - ErrDatabaseError = repositoryError("DatabaseError") -) - -func (e repositoryError) Error() string { - return "repository." + string(e) -}