forked from takarogabor/lib-jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
JitsiConferenceErrors.js
86 lines (70 loc) · 2.16 KB
/
JitsiConferenceErrors.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/**
* The errors for the conference.
*/
/**
* Indicates that client must be authenticated to create the conference.
*/
export const AUTHENTICATION_REQUIRED = 'conference.authenticationRequired';
/**
* Indicates that chat error occurred.
*/
export const CHAT_ERROR = 'conference.chatError';
/**
* Indicates that conference has been destroyed.
*/
export const CONFERENCE_DESTROYED = 'conference.destroyed';
/**
* Indicates that max users limit has been reached.
*/
export const CONFERENCE_MAX_USERS = 'conference.max_users';
/**
* Indicates that a connection error occurred when trying to join a conference.
*/
export const CONNECTION_ERROR = 'conference.connectionError';
/**
* Indicates that a connection error is due to not allowed,
* occurred when trying to join a conference.
*/
export const NOT_ALLOWED_ERROR = 'conference.connectionError.notAllowed';
/**
* Indicates that focus error happened.
*/
export const FOCUS_DISCONNECTED = 'conference.focusDisconnected';
/**
* Indicates that focus left the conference.
*/
export const FOCUS_LEFT = 'conference.focusLeft';
/**
* Indicates that graceful shutdown happened.
*/
export const GRACEFUL_SHUTDOWN = 'conference.gracefulShutdown';
/**
* Indicates that the versions of the server side components are incompatible
* with the client side.
*/
export const INCOMPATIBLE_SERVER_VERSIONS
= 'conference.incompatible_server_versions';
/**
* Indicates that jingle fatal error happened.
*/
export const JINGLE_FATAL_ERROR = 'conference.jingleFatalError';
/**
* Indicates that password cannot be set for this conference.
*/
export const PASSWORD_NOT_SUPPORTED = 'conference.passwordNotSupported';
/**
* Indicates that a password is required in order to join the conference.
*/
export const PASSWORD_REQUIRED = 'conference.passwordRequired';
/**
* Indicates that reservation system returned error.
*/
export const RESERVATION_ERROR = 'conference.reservationError';
/**
* Indicates that the conference setup failed.
*/
export const SETUP_FAILED = 'conference.setup_failed';
/**
* Indicates that there is no available videobridge.
*/
export const VIDEOBRIDGE_NOT_AVAILABLE = 'conference.videobridgeNotAvailable';