frostfs-node/pkg/local_object_storage/blobstor/common/errors.go

8 lines
191 B
Go
Raw Normal View History

package common
import "errors"
// ErrReadOnly MUST be returned for modifying operations when the storage was opened
// in readonly mode.
var ErrReadOnly = errors.New("opened as read-only")