export class ApiErrorResponse { public status: number; public title: string; public errors: Error[]; public constructor(status: number, title: string, errors?: Error[]) { this.status = status; this.title = title; this.errors = errors || []; } }