@itxch/contentful-import
Version:
This tool allows you to import JSON dump exported by contentful-export
19 lines (18 loc) • 341 B
JavaScript
class ContentfulAssetError extends Error {
filePath;
constructor(message, filePath) {
super(message);
this.filePath = filePath;
}
}
class ContentfulEntityError extends Error {
entity;
}
class ContentfulMultiError extends Error {
errors;
}
export {
ContentfulAssetError,
ContentfulEntityError,
ContentfulMultiError
};