RocketChat/Rocket.Chat

View on GitHub
apps/meteor/lib/errors/CloudWorkspaceLicenseError.ts

Summary

Maintainability
A
35 mins
Test Coverage
import { CloudWorkspaceError } from './CloudWorkspaceError';

export class CloudWorkspaceLicenseError extends CloudWorkspaceError {
    constructor(message: string) {
        super(message);
        this.name = CloudWorkspaceLicenseError.name;
    }
}