Microservices - Resilience Patterns
Given this pseudocode, what will be the output if the main service call fails?
try {
response = callMainService()
} catch (Exception e) {
response = fallbackResponse()
}
print(response)
Assuming callMainService() throws an exception and fallbackResponse() returns "Backup Data".
