mirror of
https://github.com/xxjwxc/public.git
synced 2025-09-26 20:01:19 +08:00
10 lines
171 B
Go
10 lines
171 B
Go
package myrunner
|
|
|
|
import "errors"
|
|
|
|
//任务执行超时
|
|
var ErrTimeOut = errors.New("run time out")
|
|
|
|
//任务执行中断
|
|
var ErrInterruput = errors.New("run interruput")
|