aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/lunny/levelqueue/error.go
blob: d639c5d496c0fdb88a78469456e53d3384b191e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2019 Lunny Xiao. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package levelqueue

import "errors"

var (
	// ErrNotFound means no element in queue
	ErrNotFound = errors.New("no key found")
)