diff options
Diffstat (limited to 'errors.go')
-rwxr-xr-x | errors.go | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/errors.go b/errors.go deleted file mode 100755 index 7c91a92b..00000000 --- a/errors.go +++ /dev/null @@ -1,24 +0,0 @@ -package roadrunner - -// ExecError is job level error (no WorkerProcess halt), wraps at top -// of error context -type ExecError []byte - -// Error converts error context to string -func (te ExecError) Error() string { - return string(te) -} - -// WorkerError is WorkerProcess related error -type WorkerError struct { - // Worker - Worker WorkerBase - - // Caused error - Caused error -} - -// Error converts error context to string -func (e WorkerError) Error() string { - return e.Caused.Error() -} |