12 lines
399 B
Go
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")
|
|
)
|