diff options
Diffstat (limited to 'cpp/src/IceGrid/NodeCache.cpp')
-rw-r--r-- | cpp/src/IceGrid/NodeCache.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/IceGrid/NodeCache.cpp b/cpp/src/IceGrid/NodeCache.cpp index 7cea0b2d9da..0b0478f5809 100644 --- a/cpp/src/IceGrid/NodeCache.cpp +++ b/cpp/src/IceGrid/NodeCache.cpp @@ -102,7 +102,7 @@ NodeEntry::getProxy() const Lock sync(*this); if(!_session) { - throw NodeUnreachableException(); + throw NodeUnreachableException(_name, "node is not registered"); } return _session->getNode(); } @@ -125,7 +125,7 @@ NodeEntry::getLoadInfo() const Lock sync(*this); if(!_session) { - throw NodeUnreachableException(); + throw NodeUnreachableException(_name, "node is not registered"); } return _session->getLoadInfo(); } |