mirror of
https://github.com/mumble-voip/grumble.git
synced 2025-12-19 21:59:59 -08:00
21 lines
656 B
Go
21 lines
656 B
Go
// Copyright (c) 2011 The Grumble Authors
|
|
// The use of this source code is goverened by a BSD-style
|
|
// license that can be found in the LICENSE-file.
|
|
|
|
package freezer
|
|
|
|
import "errors"
|
|
|
|
// Writer errors
|
|
var (
|
|
ErrTxGroupFull = errors.New("transction group is full")
|
|
ErrTxGroupValueTooBig = errors.New("value too big to put inside the txgroup")
|
|
)
|
|
|
|
// Walker errors
|
|
var (
|
|
ErrUnexpectedEndOfRecord = errors.New("unexpected end of record")
|
|
ErrCRC32Mismatch = errors.New("CRC32 mismatch")
|
|
ErrRemainingBytesForRecord = errors.New("remaining bytes in record")
|
|
ErrRecordTooBig = errors.New("the record in the file is too big")
|
|
)
|