diff options
author | Michi Henning <michi@zeroc.com> | 2002-08-29 05:32:38 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2002-08-29 05:32:38 +0000 |
commit | 41697db9ab1008470ed946801f04e70006c8b0cf (patch) | |
tree | 54fc7414a11f03b99a9bedf5bf08662504bad1b8 /cpp/src/Ice/IdentityUtil.cpp | |
parent | some cleanup (diff) | |
download | ice-41697db9ab1008470ed946801f04e70006c8b0cf.tar.bz2 ice-41697db9ab1008470ed946801f04e70006c8b0cf.tar.xz ice-41697db9ab1008470ed946801f04e70006c8b0cf.zip |
Changed SystemException to SyscallException.
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__); } } } |