| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- // SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
- // SPDX-License-Identifier: MIT
- // Package rtcerr implements the error wrappers defined throughout the
- // WebRTC 1.0 specifications.
- package rtcerr
- import (
- "fmt"
- )
- // UnknownError indicates the operation failed for an unknown transient reason.
- type UnknownError struct {
- Err error
- }
- func (e *UnknownError) Error() string {
- return fmt.Sprintf("UnknownError: %v", e.Err)
- }
- // 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.
- func (e *UnknownError) Unwrap() error {
- return e.Err
- }
- // InvalidStateError indicates the object is in an invalid state.
- type InvalidStateError struct {
- Err error
- }
- func (e *InvalidStateError) Error() string {
- return fmt.Sprintf("InvalidStateError: %v", e.Err)
- }
- // 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.
- func (e *InvalidStateError) Unwrap() error {
- return e.Err
- }
- // InvalidAccessError indicates the object does not support the operation or
- // argument.
- type InvalidAccessError struct {
- Err error
- }
- func (e *InvalidAccessError) Error() string {
- return fmt.Sprintf("InvalidAccessError: %v", e.Err)
- }
- // 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.
- func (e *InvalidAccessError) Unwrap() error {
- return e.Err
- }
- // NotSupportedError indicates the operation is not supported.
- type NotSupportedError struct {
- Err error
- }
- func (e *NotSupportedError) Error() string {
- return fmt.Sprintf("NotSupportedError: %v", e.Err)
- }
- // 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.
- func (e *NotSupportedError) Unwrap() error {
- return e.Err
- }
- // InvalidModificationError indicates the object cannot be modified in this way.
- type InvalidModificationError struct {
- Err error
- }
- func (e *InvalidModificationError) Error() string {
- return fmt.Sprintf("InvalidModificationError: %v", e.Err)
- }
- // 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.
- func (e *InvalidModificationError) Unwrap() error {
- return e.Err
- }
- // SyntaxError indicates the string did not match the expected pattern.
- type SyntaxError struct {
- Err error
- }
- func (e *SyntaxError) Error() string {
- return fmt.Sprintf("SyntaxError: %v", e.Err)
- }
- // 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.
- func (e *SyntaxError) Unwrap() error {
- return e.Err
- }
- // TypeError indicates an error when a value is not of the expected type.
- type TypeError struct {
- Err error
- }
- func (e *TypeError) Error() string {
- return fmt.Sprintf("TypeError: %v", e.Err)
- }
- // 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.
- func (e *TypeError) Unwrap() error {
- return e.Err
- }
- // OperationError indicates the operation failed for an operation-specific
- // reason.
- type OperationError struct {
- Err error
- }
- func (e *OperationError) Error() string {
- return fmt.Sprintf("OperationError: %v", e.Err)
- }
- // 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.
- func (e *OperationError) Unwrap() error {
- return e.Err
- }
- // NotReadableError indicates the input/output read operation failed.
- type NotReadableError struct {
- Err error
- }
- func (e *NotReadableError) Error() string {
- return fmt.Sprintf("NotReadableError: %v", e.Err)
- }
- // 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.
- func (e *NotReadableError) Unwrap() error {
- return e.Err
- }
- // RangeError indicates an error when a value is not in the set or range
- // of allowed values.
- type RangeError struct {
- Err error
- }
- func (e *RangeError) Error() string {
- return fmt.Sprintf("RangeError: %v", e.Err)
- }
- // 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.
- func (e *RangeError) Unwrap() error {
- return e.Err
- }
|