gecko/database/errors.go

13 lines
235 B
Go

// (c) 2019-2020, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package database
import "errors"
// common errors
var (
ErrClosed = errors.New("closed")
ErrNotFound = errors.New("not found")
)