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.

JitsiConnectionErrors.js 554B

123456789101112131415161718192021
  1. /**
  2. * Enumeration with the errors for the connection.
  3. * @type {{string: string}}
  4. */
  5. var JitsiConnectionErrors = {
  6. /**
  7. * Indicates that a password is required in order to join the conference.
  8. */
  9. PASSWORD_REQUIRED: "connection.passwordRequired",
  10. /**
  11. * Indicates that a connection error occurred when trying to join a
  12. * conference.
  13. */
  14. CONNECTION_ERROR: "connection.connectionError",
  15. /**
  16. * Not specified errors.
  17. */
  18. OTHER_ERROR: "connection.otherError"
  19. };
  20. module.exports = JitsiConnectionErrors;