summaryrefslogtreecommitdiff
path: root/vendor/github.com/pion/transport/vnet/errors.go
blob: d0e9394f5cecc6f1451b7f253f397bacac9e4f8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package vnet

type timeoutError struct {
	msg string
}

func newTimeoutError(msg string) error {
	return &timeoutError{
		msg: msg,
	}
}

func (e *timeoutError) Error() string {
	return e.msg
}

func (e *timeoutError) Timeout() bool {
	return true
}