(target error)
| 289 | } |
| 290 | |
| 291 | func (e *PanicError) Is(target error) bool { |
| 292 | _, ok := target.(*PanicError) |
| 293 | return ok |
| 294 | } |
| 295 | |
| 296 | type errorHandlerWrapper struct { |
| 297 | HandleErrorFunc func(ctx context.Context, job *rivertype.JobRow, err error) *jobexecutor.ErrorHandlerResult |
no outgoing calls