UNPKG

swagger-node-codegen

Version:

An OpenAPI 3.x/Swagger 2 code generator for Node.js

10 lines (9 loc) 230 B
class ServerError extends Error { constructor (...args) { super(...args); Error.captureStackTrace(this, ServerError); this.status = args[0].status; this.error = args[0].error; } } module.exports = ServerError;