| 1234567891011121314151617181920212223 |
- /**
- * Enumeration with the erros for the conference.
- * @type {{string: string}}
- */
- var ConferenceErrors = {
- /**
- * Indicates that a password is required in order to join the conference.
- */
- PASSWORD_REQUIRED: "conference.passwordRequired",
- /**
- * Indicates that a connection error occurred when trying to join a conference.
- */
- CONNECTION_ERROR: "conference.connectionError",
- /**
- * Indicates that the video bridge is down.
- */
- BRIDGE_DOWN: "conference.bridgeDown"
- /**
- * Many more errors TBD here.
- */
- };
-
- module.exports = ConferenceErrors;
|