Files
fastapi-openapi-to-postman/lib/common/ParseError.js
Erik Mendoza 088edba128 Refactor, cleaning and adding new test scenarios
- adding support for not provided nodes in input.
- adding support to bringing local dependencies in references from external references content
- bundle getReferences method tests
- Adding a new type of error to catch parsing errors and handle
2022-05-29 00:03:36 -05:00

11 lines
150 B
JavaScript

class ParseError extends Error {
constructor(message) {
super(message);
this.name = 'ParseError';
}
}
module.exports = {
ParseError
};