Home Reference Source

src/conferences/errors/WrongPasswordError.ts

export class WrongPasswordError extends Error {
	constructor() {
		super('The password is wrong, introduce the valid password to receive the conference');
		this.name = 'WrongPasswordError';
	}
}