Adam Sadovsky | 8db7443 | 2015-05-29 17:37:32 -0700 | [diff] [blame] | 1 | // 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 | |
| 5 | package store |
| 6 | |
| 7 | // TODO(sadovsky): Maybe define verrors for these. |
| 8 | const ( |
Sergey Rogulenko | 1068b1a | 2015-08-03 16:53:27 -0700 | [diff] [blame] | 9 | 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 Sadovsky | 8db7443 | 2015-05-29 17:37:32 -0700 | [diff] [blame] | 15 | ) |