blob: 26551fa84db0a3b05154e6bfcaca05fb9fcaebe4 [file] [log] [blame]
Adam Sadovsky8db74432015-05-29 17:37:32 -07001// Copyright 2015 The Vanadium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package store
6
7// TODO(sadovsky): Maybe define verrors for these.
8const (
Sergey Rogulenko1068b1a2015-08-03 16:53:27 -07009 ErrMsgClosedStore = "closed store"
10 ErrMsgAbortedSnapshot = "aborted snapshot"
11 ErrMsgCanceledStream = "canceled stream"
12 ErrMsgCommittedTxn = "already called commit"
13 ErrMsgAbortedTxn = "already called abort"
14 ErrMsgExpiredTxn = "expired transaction"
Adam Sadovsky8db74432015-05-29 17:37:32 -070015)