10 lines
277 B
Go
10 lines
277 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")
|
|
)
|