Microservices - Resilience Patterns
Identify the error in this pseudocode implementing a timeout:
try {
response = callService(timeout=3000)
print('Success')
} catch Exception {
print('Timeout')
}