mirror of
https://github.com/usatiuk/ustk-todolist.git
synced 2025-10-28 23:57:49 +01:00
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
class NotFoundError extends Error {
|
|
constructor(...args) {
|
|
super(...args);
|
|
Error.captureStackTrace(this, NotFoundError);
|
|
this.name = 'NotFound';
|
|
}
|
|
}
|
|
|
|
module.exports = { NotFoundError };
|