function sysError(res, errorResponse: { title: string; error: string; } ): void {
  res.status(500).json(errorResponse);
}