docs, workflow change
docs were updated, and going to be doing all primary (V1+) work in master branch. when ready for a release, i'll merge it into that particular branch.
This commit is contained in:
7
errs.go
7
errs.go
@@ -4,7 +4,12 @@ import (
|
||||
`errors`
|
||||
)
|
||||
|
||||
// Errors.
|
||||
var (
|
||||
ErrNoDbusConn error = errors.New("no valid dbus connection")
|
||||
// ErrBadDbusPath indicates an invalid path - either nothing exists at that path or the path is malformed.
|
||||
ErrBadDbusPath error = errors.New("invalid dbus path")
|
||||
// ErrInvalidProperty indicates a dbus.Variant is not the "real" type expected.
|
||||
ErrInvalidProperty error = errors.New("invalid variant type; cannot convert")
|
||||
// ErrNoDbusConn gets triggered if a connection to Dbus can't be detected.
|
||||
ErrNoDbusConn error = errors.New("no valid dbus connection")
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user