 | FhirException(HttpStatusCode, Resource, String, Exception) Constructor |
Creates a new FHIR exception with specified code
Namespace: SanteDB.Messaging.FHIR.ExceptionsAssembly: SanteDB.Messaging.FHIR (in SanteDB.Messaging.FHIR.dll) Version: 3.0.2081-alpha+4e2291b954f20d29cba15591683155ca851b26eb
Syntaxpublic FhirException(
HttpStatusCode statusCode,
Resource responseResource,
string diagnostics,
Exception innerException
)
Public Sub New (
statusCode As HttpStatusCode,
responseResource As Resource,
diagnostics As String,
innerException As Exception
)
public:
FhirException(
HttpStatusCode statusCode,
Resource^ responseResource,
String^ diagnostics,
Exception^ innerException
)
new :
statusCode : HttpStatusCode *
responseResource : Resource *
diagnostics : string *
innerException : Exception -> FhirExceptionParameters
- statusCode HttpStatusCode
- The HTTP status code
- responseResource Resource
- The response resource
- diagnostics String
- The diagnostic text
- innerException Exception
- The exception that caused this exception to be thrown
See Also