br.ufsc.bridge.mpiclient.exceptions.MPIXmlParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mpi-client Show documentation
Show all versions of mpi-client Show documentation
Implementação de client para um servidor MPI (Master Patient Index) utilizando mensagens SOAP (PIX/PDQ) baseadas na especificação técnica para integração do
DATASUS.
The newest version!
package br.ufsc.bridge.mpiclient.exceptions;
public class MPIXmlParseException extends MPIException {
public MPIXmlParseException(String textContent) {
super(textContent);
}
public MPIXmlParseException(String message, Throwable cause) {
super(message, cause);
}
public MPIXmlParseException(Throwable cause) {
super(cause);
}
}