// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT

package vnet

type timeoutError struct {
	msg string
}

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

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

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