package rtcerr
Import Path
github.com/pion/webrtc/v4/pkg/rtcerr (on go.dev)
Dependency Relation
imports one package, and imported by one package
Involved Source Files
Package rtcerr implements the error wrappers defined throughout the
WebRTC 1.0 specifications.
Package-Level Type Names (total 10)
InvalidAccessError indicates the object does not support the operation or
argument.
Err error
(*InvalidAccessError) Error() string
Unwrap returns the result of calling the Unwrap method on err, if err's type contains
an Unwrap method returning error. Otherwise, Unwrap returns nil.
*InvalidAccessError : error
*InvalidAccessError : golang.org/x/xerrors.Wrapper
InvalidModificationError indicates the object cannot be modified in this way.
Err error
(*InvalidModificationError) Error() string
Unwrap returns the result of calling the Unwrap method on err, if err's type contains
an Unwrap method returning error. Otherwise, Unwrap returns nil.
*InvalidModificationError : error
*InvalidModificationError : golang.org/x/xerrors.Wrapper
InvalidStateError indicates the object is in an invalid state.
Err error
(*InvalidStateError) Error() string
Unwrap returns the result of calling the Unwrap method on err, if err's type contains
an Unwrap method returning error. Otherwise, Unwrap returns nil.
*InvalidStateError : error
*InvalidStateError : golang.org/x/xerrors.Wrapper
NotReadableError indicates the input/output read operation failed.
Err error
(*NotReadableError) Error() string
Unwrap returns the result of calling the Unwrap method on err, if err's type contains
an Unwrap method returning error. Otherwise, Unwrap returns nil.
*NotReadableError : error
*NotReadableError : golang.org/x/xerrors.Wrapper
NotSupportedError indicates the operation is not supported.
Err error
(*NotSupportedError) Error() string
Unwrap returns the result of calling the Unwrap method on err, if err's type contains
an Unwrap method returning error. Otherwise, Unwrap returns nil.
*NotSupportedError : error
*NotSupportedError : golang.org/x/xerrors.Wrapper
OperationError indicates the operation failed for an operation-specific
reason.
Err error
(*OperationError) Error() string
Unwrap returns the result of calling the Unwrap method on err, if err's type contains
an Unwrap method returning error. Otherwise, Unwrap returns nil.
*OperationError : error
*OperationError : golang.org/x/xerrors.Wrapper
RangeError indicates an error when a value is not in the set or range
of allowed values.
Err error
(*RangeError) Error() string
Unwrap returns the result of calling the Unwrap method on err, if err's type contains
an Unwrap method returning error. Otherwise, Unwrap returns nil.
*RangeError : error
*RangeError : golang.org/x/xerrors.Wrapper
SyntaxError indicates the string did not match the expected pattern.
Err error
(*SyntaxError) Error() string
Unwrap returns the result of calling the Unwrap method on err, if err's type contains
an Unwrap method returning error. Otherwise, Unwrap returns nil.
*SyntaxError : error
*SyntaxError : golang.org/x/xerrors.Wrapper
TypeError indicates an error when a value is not of the expected type.
Err error
(*TypeError) Error() string
Unwrap returns the result of calling the Unwrap method on err, if err's type contains
an Unwrap method returning error. Otherwise, Unwrap returns nil.
*TypeError : error
*TypeError : golang.org/x/xerrors.Wrapper
UnknownError indicates the operation failed for an unknown transient reason.
Err error
(*UnknownError) Error() string
Unwrap returns the result of calling the Unwrap method on err, if err's type contains
an Unwrap method returning error. Otherwise, Unwrap returns nil.
*UnknownError : error
*UnknownError : golang.org/x/xerrors.Wrapper
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |