UNPKG

@nestjs/cli

Version:

Nest - modern, fast, powerful node.js web framework (@cli)

10 lines (9 loc) 273 B
export class ReaderFileLackPermissionsError extends Error { filePath; fsErrorCode; constructor(filePath, fsErrorCode) { super(`File ${filePath} lacks read permissions!`); this.filePath = filePath; this.fsErrorCode = fsErrorCode; } }