This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
bactdb/errors/characteristics.go
Matthew Dillon d46e721063 Refactor delete handlers
Fixes #18.
2015-10-13 13:42:19 -07:00

12 lines
399 B
Go

package errors
import "errors"
var (
// ErrCharacteristicNotFound when not found.
ErrCharacteristicNotFound = errors.New("Characteristic not found")
// ErrCharacteristicNotUpdated when not updated.
ErrCharacteristicNotUpdated = errors.New("Characteristic not updated")
// ErrCharacteristicNotDeleted when not deleted.
ErrCharacteristicNotDeleted = errors.New("Characteristic not deleted")
)