trilium/src/errors/not_found_error.ts
2024-02-16 22:50:49 +02:00

9 lines
151 B
TypeScript

class NotFoundError {
message: string;
constructor(message: string) {
this.message = message;
}
}
module.exports = NotFoundError;