Files
pixel-streaming-lib/src/http/errors/not_found_error.js
T
2023-01-19 11:53:24 +05:00

8 lines
162 B
JavaScript

class not_found_error extends Error {
constructor(message) {
super(message)
this.status_code = 404
}
}
module.exports = not_found_error