Notes/src/errors/not_found_error.js

7 lines
121 B
JavaScript
Raw Normal View History

class NotFoundError {
constructor(message) {
this.message = message;
}
}
module.exports = NotFoundError;