@promptbook/langtail
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
11 lines (10 loc) • 319 B
TypeScript
import { AbstractFormatError } from "../../errors/AbstractFormatError";
/**
* This error indicates problem with parsing of CSV
*
* @public exported from `@promptbook/core`
*/
export declare class CsvFormatError extends AbstractFormatError {
readonly name = "CsvFormatError";
constructor(message: string);
}