Polly Circuit Breaker handled and unhandled exceptions
问题 I want to use Polly to implement a Circuit Breaker pattern. In the docs, there is a description of the Half Open state, and there it says: If a handled exception is received, that exception is rethrown, and the circuit transitions immediately back to open, and remains open again for the configured timespan. If an unhandled exception is received, the circuit remains in half-open. I'm not sure I understand the difference here between handled and unhandled exception. We are describing a case