You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JitsiConferenceErrors.js 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /**
  2. * The errors for the conference.
  3. */
  4. /**
  5. * Indicates that client must be authenticated to create the conference.
  6. */
  7. export const AUTHENTICATION_REQUIRED = 'conference.authenticationRequired';
  8. /**
  9. * Indicates that chat error occurred.
  10. */
  11. export const CHAT_ERROR = 'conference.chatError';
  12. /**
  13. * Indicates that conference has been destroyed.
  14. */
  15. export const CONFERENCE_DESTROYED = 'conference.destroyed';
  16. /**
  17. * Indicates that max users limit has been reached.
  18. */
  19. export const CONFERENCE_MAX_USERS = 'conference.max_users';
  20. /**
  21. * Indicates that a connection error occurred when trying to join a conference.
  22. */
  23. export const CONNECTION_ERROR = 'conference.connectionError';
  24. /**
  25. * Indicates that a connection error is due to not allowed,
  26. * occurred when trying to join a conference.
  27. */
  28. export const NOT_ALLOWED_ERROR = 'conference.connectionError.notAllowed';
  29. /**
  30. * Indicates that a connection error is due to not allowed,
  31. * occurred when trying to join a conference, only approved members are allowed to join.
  32. */
  33. export const MEMBERS_ONLY_ERROR = 'conference.connectionError.membersOnly';
  34. /**
  35. * Indicates that a connection error is due to denied access to the room,
  36. * occurred after joining a lobby room and access is denied by the room moderators.
  37. */
  38. export const CONFERENCE_ACCESS_DENIED = 'conference.connectionError.accessDenied';
  39. /**
  40. * Indicates that focus error happened.
  41. */
  42. export const FOCUS_DISCONNECTED = 'conference.focusDisconnected';
  43. /**
  44. * Indicates that focus left the conference.
  45. */
  46. export const FOCUS_LEFT = 'conference.focusLeft';
  47. /**
  48. * Indicates that graceful shutdown happened.
  49. */
  50. export const GRACEFUL_SHUTDOWN = 'conference.gracefulShutdown';
  51. /**
  52. * Indicates that the media connection has failed.
  53. */
  54. export const ICE_FAILED = 'conference.iceFailed';
  55. /**
  56. * Indicates that the versions of the server side components are incompatible
  57. * with the client side.
  58. */
  59. export const INCOMPATIBLE_SERVER_VERSIONS
  60. = 'conference.incompatible_server_versions';
  61. /**
  62. * Indicates that offer/answer had failed.
  63. */
  64. export const OFFER_ANSWER_FAILED = 'conference.offerAnswerFailed';
  65. /**
  66. * Indicates that password cannot be set for this conference.
  67. */
  68. export const PASSWORD_NOT_SUPPORTED = 'conference.passwordNotSupported';
  69. /**
  70. * Indicates that a password is required in order to join the conference.
  71. */
  72. export const PASSWORD_REQUIRED = 'conference.passwordRequired';
  73. /**
  74. * Indicates that reservation system returned error.
  75. */
  76. export const RESERVATION_ERROR = 'conference.reservationError';
  77. /**
  78. * Indicates that there is no available videobridge.
  79. */
  80. export const VIDEOBRIDGE_NOT_AVAILABLE = 'conference.videobridgeNotAvailable';