blob: db9957219d0ff1fcc2f6ab3f14ff4c45c124b668 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package roadrunner
// JobError is job level error (no worker halt), wraps at top
// of error context
type JobError []byte
// Error converts error context to string
func (je JobError) Error() string {
return string(je)
}
// WorkerError is worker related error
type WorkerError struct {
// Worker
Worker *Worker
// Caused error
Caused error
}
// Error converts error context to string
func (e WorkerError) Error() string {
return e.Caused.Error()
}
|