in src/main/scala/pa/PaClient.scala [154:157]
protected def get(suffix: String)(implicit context: ExecutionContext): Future[String] = GET(base + suffix).map{
case Response(200, body, _) => body
case Response(status, _, reason) => throw new PaClientException(s"$status $reason")
}