in src/main/scala/pa/Parser.scala [152:158]
def parseMatchInfo(s: String) = {
parseMatchDay(s) match {
case theMatch :: Nil => theMatch
case matches =>
throw new RuntimeException(s"Expected exactly one match in match info endpoint but got ${matches.length}")
}
}