mirror of
https://github.com/livekit/livekit.git
synced 2026-03-30 22:05:39 +00:00
13 lines
535 B
Go
13 lines
535 B
Go
package rtc
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrRoomClosed = errors.New("room has already closed")
|
|
ErrPermissionDenied = errors.New("no permissions to access the room")
|
|
ErrMaxParticipantsExceeded = errors.New("room has exceeded its max participants")
|
|
ErrAlreadyJoined = errors.New("a participant with the same identity is already in the room")
|
|
ErrUnexpectedOffer = errors.New("expected answer SDP, received offer")
|
|
ErrUnexpectedNegotiation = errors.New("client negotiation has not been granted")
|
|
)
|