mirror of
https://github.com/zadam/trilium.git
synced 2025-11-13 16:55:50 +01:00
7 lines
121 B
JavaScript
7 lines
121 B
JavaScript
|
|
class NotFoundError {
|
||
|
|
constructor(message) {
|
||
|
|
this.message = message;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = NotFoundError;
|