RocketChat/Rocket.Chat

View on GitHub
ee/packages/license/src/errors/NotReadyForValidation.ts

Summary

Maintainability
A
0 mins
Test Coverage
export class NotReadyForValidation extends Error {
    constructor(message = 'Not ready for validation') {
        super(message);
        this.name = 'NotReadyForValidation';
    }
}