go-pathmatch/errors.go

11 lines
159 B
Go
Raw Normal View History

2019-06-21 06:40:37 +00:00
package pathmatch
import (
"errors"
)
var (
2019-06-21 20:37:53 +00:00
errNilReceiver = errors.New("pathmatch: Nil Receiver")
errNilTarget = errors.New("pathmatch: Nil Target")
2019-06-21 06:40:37 +00:00
)