summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/IdentityUtil.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2002-08-29 05:32:38 +0000
committerMichi Henning <michi@zeroc.com>2002-08-29 05:32:38 +0000
commit41697db9ab1008470ed946801f04e70006c8b0cf (patch)
tree54fc7414a11f03b99a9bedf5bf08662504bad1b8 /cpp/src/Ice/IdentityUtil.cpp
parentsome cleanup (diff)
downloadice-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.cpp6
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__);
}
}
}