summaryrefslogtreecommitdiff
path: root/src/mongo/s/stale_exception.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/stale_exception.h')
-rw-r--r--src/mongo/s/stale_exception.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/mongo/s/stale_exception.h b/src/mongo/s/stale_exception.h
index 1661320db8e..36f30c7fecb 100644
--- a/src/mongo/s/stale_exception.h
+++ b/src/mongo/s/stale_exception.h
@@ -81,14 +81,11 @@ public:
* stale config exceptions in a map and this requires a default constructor.
*/
StaleConfigException()
- : AssertionException(0, "initializing empty stale config exception object") {}
+ : AssertionException(ErrorCodes::InternalError,
+ "initializing empty stale config exception object") {}
virtual ~StaleConfigException() throw() {}
- virtual void appendPrefix(std::stringstream& ss) const {
- ss << "stale sharding config exception: ";
- }
-
std::string getns() const {
return _ns;
}