Exception tweak

This commit is contained in:
jamesagnew 2021-02-04 17:31:39 -05:00
parent cfc5b87e3e
commit f3c0ecd54d
1 changed files with 3 additions and 3 deletions

View File

@ -33,15 +33,15 @@ public class FhirClientConnectionException extends BaseServerResponseException {
private static final long serialVersionUID = 1L;
public FhirClientConnectionException(Throwable theCause) {
super(0, theCause);
super(500, theCause);
}
public FhirClientConnectionException(String theMessage, Throwable theCause) {
super(0, theMessage, theCause);
super(500, theMessage, theCause);
}
public FhirClientConnectionException(String theMessage) {
super(0, theMessage);
super(500, theMessage);
}
}