mirror of
https://github.com/postmanlabs/openapi-to-postman.git
synced 2022-11-29 22:05:00 +03:00
- 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
11 lines
150 B
JavaScript
11 lines
150 B
JavaScript
class ParseError extends Error {
|
|
constructor(message) {
|
|
super(message);
|
|
this.name = 'ParseError';
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
ParseError
|
|
};
|