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.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 focus error happened.
  26. */
  27. export const FOCUS_DISCONNECTED = "conference.focusDisconnected";
  28. /**
  29. * Indicates that focus left the conference.
  30. */
  31. export const FOCUS_LEFT = "conference.focusLeft";
  32. /**
  33. * Indicates that graceful shutdown happened.
  34. */
  35. export const GRACEFUL_SHUTDOWN = "conference.gracefulShutdown";
  36. /**
  37. * Indicates that the versions of the server side components are incompatible
  38. * with the client side.
  39. */
  40. export const INCOMPATIBLE_SERVER_VERSIONS
  41. = "conference.incompatible_server_versions";
  42. /**
  43. * Indicates that jingle fatal error happened.
  44. */
  45. export const JINGLE_FATAL_ERROR = "conference.jingleFatalError";
  46. /**
  47. * Indicates that password cannot be set for this conference.
  48. */
  49. export const PASSWORD_NOT_SUPPORTED = "conference.passwordNotSupported";
  50. /**
  51. * Indicates that a password is required in order to join the conference.
  52. */
  53. export const PASSWORD_REQUIRED = "conference.passwordRequired";
  54. /**
  55. * Indicates that reservation system returned error.
  56. */
  57. export const RESERVATION_ERROR = "conference.reservationError";
  58. /**
  59. * Indicates that the conference setup failed.
  60. */
  61. export const SETUP_FAILED = "conference.setup_failed";
  62. /**
  63. * Indicates that there is no available videobridge.
  64. */
  65. export const VIDEOBRIDGE_NOT_AVAILABLE = "conference.videobridgeNotAvailable";