aboutsummaryrefslogtreecommitdiff
path: root/types/errors.go
diff options
context:
space:
mode:
Diffstat (limited to 'types/errors.go')
-rw-r--r--types/errors.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/types/errors.go b/types/errors.go
deleted file mode 100644
index 1e5a562..0000000
--- a/types/errors.go
+++ /dev/null
@@ -1,12 +0,0 @@
-package types
-
-import "dove/enums"
-
-type ServiceError struct {
- Kind enums.ErrorKind
- Message string
-}
-
-func (self *ServiceError) Error() string {
- return self.Message
-}