Files
webrtc/vendor/github.com/blackjack/webcam/errors.go
T
2024-03-29 16:00:35 +01:00

9 lines
119 B
Go

package webcam
// Timeout error
type Timeout struct{}
func (e *Timeout) Error() string {
return "Timeout occured"
}