Commit bc9992bf authored by Neel Goyal's avatar Neel Goyal Committed by Facebook Github Bot 7

Add NETWORK_ERROR to switch statement

Summary: Add NETWOR_ERROR to switch so it doesn't fall into Invalid Exception block.

Differential Revision: D3282448

fbshipit-source-id: 2cc5d21e436e6ac8f2f6581d99341ac47cf5b023
parent c76ee315
...@@ -96,6 +96,8 @@ class AsyncSocketException : public std::runtime_error { ...@@ -96,6 +96,8 @@ class AsyncSocketException : public std::runtime_error {
return "Could not bind"; return "Could not bind";
case SASL_HANDSHAKE_TIMEOUT: case SASL_HANDSHAKE_TIMEOUT:
return "SASL handshake timeout"; return "SASL handshake timeout";
case NETWORK_ERROR:
return "Network error";
default: default:
return "(Invalid exception type)"; return "(Invalid exception type)";
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment