Files
fastapi-openapi-to-postman/lib/error.js
2018-11-14 19:20:47 +05:30

13 lines
213 B
JavaScript

/**
* constructor openApiErr
* @constructor
* @param {*} message errorMessage
*/
function openApiErr(message) {
this.message = message || '';
}
openApiErr.prototype = Error();
module.exports = openApiErr;