UNPKG

alepha

Version:

Easy-to-use modern TypeScript framework for building many kind of applications.

8 lines (7 loc) 166 B
export class FileError extends Error { constructor(message: string, cause?: Error) { super(message); this.name = "FileError"; this.cause = cause; } }