mirror of
https://github.com/zadam/trilium.git
synced 2025-06-06 18:08:33 +02:00
9 lines
149 B
TypeScript
9 lines
149 B
TypeScript
class NotFoundError {
|
|
message: string;
|
|
|
|
constructor(message: string) {
|
|
this.message = message;
|
|
}
|
|
}
|
|
|
|
export default NotFoundError; |