diff options
author | Valery Piashchynski <[email protected]> | 2020-11-09 14:21:21 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-11-09 14:21:21 +0300 |
commit | e3a1669c8168320318291325f70ca35e2ab2eec3 (patch) | |
tree | f14875ecb4a86805226812108efcab72898b6125 /errors.go | |
parent | 9fbe7726dd55cfedda724b7644e1b6bf7c1a6cb4 (diff) |
New tests, remove errors.go
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() -} |