Inner Health Error Response
data class InnerHealthErrorResponse(val creationTimeUtc: String? = null, val entityId: String? = null, val errorCategory: String? = null, val errorCode: String? = null, val errorLevel: String? = null, val errorMessage: String? = null, val errorSource: String? = null, val errorType: String? = null, val possibleCauses: String? = null, val recommendedAction: String? = null, val recoveryProviderErrorMessage: String? = null, val summaryMessage: String? = null)
Implements InnerHealthError class. HealthError object has a list of InnerHealthErrors as child errors. InnerHealthError is used because this will prevent an infinite loop of structures when Hydra tries to auto-generate the contract. We are exposing the related health errors as inner health errors and all API consumers can utilize this in the same fashion as Exception -> InnerException.
Constructors
Link copied to clipboard
fun InnerHealthErrorResponse(creationTimeUtc: String? = null, entityId: String? = null, errorCategory: String? = null, errorCode: String? = null, errorLevel: String? = null, errorMessage: String? = null, errorSource: String? = null, errorType: String? = null, possibleCauses: String? = null, recommendedAction: String? = null, recoveryProviderErrorMessage: String? = null, summaryMessage: String? = null)