Documentation ¶
Overview ¶
Package rtcerr implements the error wrappers defined throughout the WebRTC 1.0 specifications.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type InvalidAccessError ¶
type InvalidAccessError struct {
Err error
}
InvalidAccessError indicates the object does not support the operation or argument.
func (*InvalidAccessError) Error ¶
func (e *InvalidAccessError) Error() string
type InvalidModificationError ¶
type InvalidModificationError struct {
Err error
}
InvalidModificationError indicates the object cannot be modified in this way.
func (*InvalidModificationError) Error ¶
func (e *InvalidModificationError) Error() string
type InvalidStateError ¶
type InvalidStateError struct {
Err error
}
InvalidStateError indicates the object is in an invalid state.
func (*InvalidStateError) Error ¶
func (e *InvalidStateError) Error() string
type NotReadableError ¶
type NotReadableError struct {
Err error
}
NotReadableError indicates the input/output read operation failed.
func (*NotReadableError) Error ¶
func (e *NotReadableError) Error() string
type NotSupportedError ¶
type NotSupportedError struct {
Err error
}
NotSupportedError indicates the operation is not supported.
func (*NotSupportedError) Error ¶
func (e *NotSupportedError) Error() string
type OperationError ¶
type OperationError struct {
Err error
}
OperationError indicates the operation failed for an operation-specific reason.
func (*OperationError) Error ¶
func (e *OperationError) Error() string
type RangeError ¶
type RangeError struct {
Err error
}
RangeError indicates an error when a value is not in the set or range of allowed values.
func (*RangeError) Error ¶
func (e *RangeError) Error() string
type SyntaxError ¶
type SyntaxError struct {
Err error
}
SyntaxError indicates the string did not match the expected pattern.
func (*SyntaxError) Error ¶
func (e *SyntaxError) Error() string
type TypeError ¶
type TypeError struct {
Err error
}
TypeError indicates an error when a value is not of the expected type.
type UnknownError ¶
type UnknownError struct {
Err error
}
UnknownError indicates the operation failed for an unknown transient reason.
func (*UnknownError) Error ¶
func (e *UnknownError) Error() string