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