Select the types of activity you want to include in your feed.
1export class ApiError extends Error { 2 constructor( 3 message: string, 4 public statusCode: number = 500, 5 public details?: string, 6 ) { 7 super(message); 8 this.name = "ApiError"; 9 Object.setPrototypeOf(this, ApiError.prototype); 10 } 11}