@ui5/task-adaptation
Version:
Custom task for ui5-builder which allows building UI5 Flexibility Adaptation Projects for SAP BTP, Cloud Foundry environment
8 lines • 362 B
JavaScript
export default class AnnotationDiffStructureError extends Error {
constructor(json) {
super(JSON.stringify(json));
this.name = "AnnotationDiffStructureError";
this.message = `The structure of the OData annotation xml is different near element: ${JSON.stringify(json)}`;
}
}
//# sourceMappingURL=annotationDiffStructureError.js.map