summaryrefslogtreecommitdiff
path: root/error.go
diff options
context:
space:
mode:
Diffstat (limited to 'error.go')
-rw-r--r--error.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/error.go b/error.go
deleted file mode 100644
index a8f9e539..00000000
--- a/error.go
+++ /dev/null
@@ -1,17 +0,0 @@
-package roadrunner
-
-// WorkerError is communication/process error.
-type WorkerError string
-
-// Error converts error context to string
-func (we WorkerError) Error() string {
- return string(we)
-}
-
-// JobError is job level error (no worker halt)
-type JobError []byte
-
-// Error converts error context to string
-func (je JobError) Error() string {
- return string(je)
-}