9e3b5e0170
- 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.
12 lines
298 B
Go
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")
|
|
)
|