br.ufsc.bridge.mpiclient.exceptions.MPIException 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 MPIException extends Exception {
public MPIException(String message) {
super(message);
}
public MPIException(String message, Throwable cause) {
super(message, cause);
}
public MPIException(Throwable cause) {
super(cause);
}
}