UNPKG

briareus

Version:

Briareus assists with Feature Branch deploys to ECS

14 lines (11 loc) 268 B
'use strict' class NotFound extends Error { constructor(...args) { super(...args); Error.captureStackTrace(this, NotFound); this.code = 'not_found'; this.customStatusCode = 404; this.responseBody = 'Not Found'; } } module.exports = NotFound;