We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4a8df5 commit a2e1b18Copy full SHA for a2e1b18
errors.go
@@ -4,7 +4,7 @@ import "errors"
4
5
var (
6
// ErrNoTaskInQueue there is nothing in the queue
7
- ErrNoTaskInQueue = errors.New("no task in queue")
+ ErrNoTaskInQueue = errors.New("golang-queue: no task in queue")
8
// ErrQueueHasBeenClosed the current queue is closed
9
- ErrQueueHasBeenClosed = errors.New("queue has been closed")
+ ErrQueueHasBeenClosed = errors.New("golang-queue: queue has been closed")
10
)
0 commit comments