blob: b97467026c345add205009f7217b8bafc9de7342 (
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
// TaskError is job level error (no WorkerProcess halt), wraps at top
// of error context
type TaskError []byte
// Error converts error context to string
func (te TaskError) 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()
}
|