atsid/generator-ats-node-webapp

View on GitHub
generators/server-full/templates/server/errors/not_found.js

Summary

Maintainability
A
30 mins
Test Coverage
class NotFoundError extends Error {
  constructor(message) {
    super();
    this.message = message;
    this.httpStatus = 404;
  }
}
module.exports = NotFoundError;