summaryrefslogtreecommitdiff
path: root/errors.go
blob: 52356549952186345f64158a0a136fb11df91733 (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 WorkerProcess halt), wraps at top
// of error context
type JobError []byte

// Error converts error context to string
func (te JobError) 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()
}