
Class InvalidResponseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ca.uhn.fhir.rest.server.exceptions.BaseServerResponseException
-
- ca.uhn.fhir.rest.client.exceptions.InvalidResponseException
-
- All Implemented Interfaces:
Serializable
public class InvalidResponseException extends BaseServerResponseException
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidResponseException(int theStatusCode, String theMessage)
ConstructorInvalidResponseException(int theStatusCode, String theMessage, Throwable theCause)
ConstructorInvalidResponseException(int theStatusCode, Throwable theCause)
Constructor
-
Method Summary
-
Methods inherited from class ca.uhn.fhir.rest.server.exceptions.BaseServerResponseException
addResponseHeader, getAdditionalMessages, getOperationOutcome, getResponseBody, getResponseHeaders, getResponseMimeType, getStatusCode, hasResponseHeaders, isErrorMessageTrusted, newInstance, setErrorMessageTrusted, setOperationOutcome, setResponseBody, setResponseMimeType
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidResponseException
public InvalidResponseException(int theStatusCode, String theMessage)
Constructor- Parameters:
theMessage
- The message
-
InvalidResponseException
public InvalidResponseException(int theStatusCode, String theMessage, Throwable theCause)
Constructor- Parameters:
theMessage
- The messagetheCause
- The cause
-
InvalidResponseException
public InvalidResponseException(int theStatusCode, Throwable theCause)
Constructor- Parameters:
theCause
- The underlying cause exception
-
-