Select the types of activity you want to include in your feed.
1import { ApiError } from "./ApiError"; 2 3export class DatabaseError extends ApiError { 4 constructor(message: string = "Database operation failed", details?: string) { 5 super(message, 500, details); 6 this.name = "DatabaseError"; 7 Object.setPrototypeOf(this, DatabaseError.prototype); 8 } 9}