trilium/src/errors/not_found_error.ts

9 lines
149 B
TypeScript

class NotFoundError {
message: string;
constructor(message: string) {
this.message = message;
}
}
export default NotFoundError;