diff options
Diffstat (limited to 'cpp/src/Ice/IdentityUtil.cpp')
-rw-r--r-- | cpp/src/Ice/IdentityUtil.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/IdentityUtil.cpp b/cpp/src/Ice/IdentityUtil.cpp index a8e2b968237..bf089c9b8c0 100644 --- a/cpp/src/Ice/IdentityUtil.cpp +++ b/cpp/src/Ice/IdentityUtil.cpp @@ -44,20 +44,20 @@ Ice::stringToIdentity(const string& s) { if(!decodeString(s, 0, 0, ident.name)) { - throw SystemException(__FILE__, __LINE__); + throw SyscallException(__FILE__, __LINE__); } } else { if(!decodeString(s, 0, slash, ident.category)) { - throw SystemException(__FILE__, __LINE__); + throw SyscallException(__FILE__, __LINE__); } if(slash + 1 < s.size()) { if(!decodeString(s, slash + 1, 0, ident.name)) { - throw SystemException(__FILE__, __LINE__); + throw SyscallException(__FILE__, __LINE__); } } } |