protected def interceptErrors()

in src/main/scala/pa/PaClient.scala [163:166]


  protected def interceptErrors(xml: String): String = {
    val errors =  parseErrors(xml)
    if (errors.isEmpty) xml else throw PaClientErrorsException(errors.map(_.message).mkString(", "))
  }