NotFoundError.js 214 B

1234567891011
  1. class NotFoundError extends Error {
  2. constructor(data) {
  3. super('NotFoundError');
  4. this.name = this.constructor.name;
  5. this.data = data;
  6. this.statusCode = 404;
  7. }
  8. }
  9. module.exports = NotFoundError;