feature: FHIR R4 Inbound Facade
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
public class FhirMappingException : Exception
|
||||
{
|
||||
public string FhirIssueCode { get; }
|
||||
public int HttpStatus { get; }
|
||||
|
||||
public FhirMappingException(string message, string fhirIssueCode, int httpStatus = 422)
|
||||
: base(message)
|
||||
{
|
||||
FhirIssueCode = fhirIssueCode;
|
||||
HttpStatus = httpStatus;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user