github.com/petermattis/pebble@v0.0.0-20190905164901-ab51a2166067/internal/base/error.go (about) 1 // Copyright 2011 The LevelDB-Go and Pebble Authors. All rights reserved. Use 2 // of this source code is governed by a BSD-style license that can be found in 3 // the LICENSE file. 4 5 package base 6 7 import ( 8 "errors" 9 ) 10 11 // ErrNotFound means that a get or delete call did not find the requested key. 12 var ErrNotFound = errors.New("pebble: not found")