Files
onvif-go/.claude/internal copy/soap/errors.go
T
ProtoTess 19db372cdc Add ONVIF types and structures for device capabilities and configurations
- Introduced comprehensive data structures for ONVIF device information, capabilities, media profiles, and configurations.
- Added types for device services, network settings, imaging options, audio/video configurations, and user management.
- Implemented structures for handling various ONVIF features including PTZ control, event subscriptions, and analytics configurations.
- Enhanced support for network protocols, security settings, and system logging.
2026-01-16 04:37:59 +00:00

12 lines
298 B
Go

package soap
import "errors"
var (
// ErrHTTPRequestFailed is returned when an HTTP request fails.
ErrHTTPRequestFailed = errors.New("HTTP request failed")
// ErrEmptyResponseBody is returned when a response body is empty.
ErrEmptyResponseBody = errors.New("received empty response body")
)