mirror of
https://github.com/zadam/trilium.git
synced 2025-10-29 18:49:00 +01:00
10 lines
150 B
TypeScript
10 lines
150 B
TypeScript
class NotFoundError {
|
|
message: string;
|
|
|
|
constructor(message: string) {
|
|
this.message = message;
|
|
}
|
|
}
|
|
|
|
export default NotFoundError;
|