Files
onvif-go/server/errors.go
T
0x524a 9e3b5e0170 feat: add comprehensive ONVIF test reports and enhance documentation
- Introduced CAMERA_TEST_REPORT.md and COMPREHENSIVE_TEST_SUMMARY.md to document testing results for the Bosch FLEXIDOME indoor 5100i IR camera.
- Added detailed analysis of ONVIF Media Service operations and implementation status in MEDIA_OPERATIONS_ANALYSIS.md and MEDIA_WSDL_OPERATIONS_ANALYSIS.md.
- Updated implementation status documentation to reflect the completion of all 79 operations in the ONVIF Media Service.
- Enhanced existing comments and documentation across various files for better clarity and consistency.
2025-12-02 02:29:51 -05:00

21 lines
717 B
Go

package server
import "errors"
var (
// ErrVideoSourceNotFound is returned when a video source is not found.
ErrVideoSourceNotFound = errors.New("video source not found")
// ErrProfileNotFound is returned when a profile is not found.
ErrProfileNotFound = errors.New("profile not found")
// ErrSnapshotNotSupported is returned when snapshot is not supported for a profile.
ErrSnapshotNotSupported = errors.New("snapshot not supported for profile")
// ErrPTZNotSupported is returned when PTZ is not supported for a profile.
ErrPTZNotSupported = errors.New("PTZ not supported for profile")
// ErrPresetNotFound is returned when a preset is not found.
ErrPresetNotFound = errors.New("preset not found")
)