Files
onvif-go/discovery copy/errors.go
T
2026-01-16 04:11:59 +00:00

13 lines
418 B
Go

// Package discovery provides error definitions for the discovery package.
package discovery
import "errors"
var (
// ErrNoProbeMatches is returned when no probe matches are found during discovery.
ErrNoProbeMatches = errors.New("no probe matches found")
// ErrNetworkInterfaceNotFound is returned when a network interface is not found.
ErrNetworkInterfaceNotFound = errors.New("network interface not found")
)