mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 13:25:42 +00:00
13 lines
481 B
Go
13 lines
481 B
Go
package rtc
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrRoomIdMissing = errors.New("room is not passed in")
|
|
ErrInvalidRoomName = errors.New("room must have a unique name")
|
|
ErrRoomNotFound = errors.New("requested room does not exist")
|
|
ErrPermissionDenied = errors.New("no permissions to access the room")
|
|
ErrUnexpectedOffer = errors.New("expected answer SDP, received offer")
|
|
ErrUnexpectedNegotiation = errors.New("client negotiation has not been granted")
|
|
)
|