Home Reference Source

src/conferences/errors/AccessBeforeTimeError.ts

export class AccessBeforeTimeError extends Error {
	constructor() {
		super('You are trying to access the conference before time');
		this.name = 'AccessBeforeTimeErrror';
	}
}