RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/lib/errors/VisitorDoesNotExistError.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { RocketChatError } from './RocketChatError';

export class VisitorDoesNotExistError extends RocketChatError<'visitor-does-not-exist'> {
    constructor(message = 'Visitor does not exist', details?: string) {
        super('visitor-does-not-exist', message, details);
    }
}