export class FileExtensionNotSupported extends Error { constructor(filePath: string, extension: string) { super(`failed reading doc file: ${filePath} as file extension ${extension} is not supported by any of the registered component doc readers. To register a doc reader please use the 'registerDocReader' API of the teambit.docs/docs.`); } }