mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 11:02:28 +08:00
7 lines
121 B
JavaScript
7 lines
121 B
JavaScript
![]() |
class NotFoundError {
|
||
|
constructor(message) {
|
||
|
this.message = message;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = NotFoundError;
|