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/slice2freezej/Main.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/slice2freezej/Main.cpp')
-rw-r--r-- | cpp/src/slice2freezej/Main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/slice2freezej/Main.cpp b/cpp/src/slice2freezej/Main.cpp index 256bf86821b..58e391d0d9f 100644 --- a/cpp/src/slice2freezej/Main.cpp +++ b/cpp/src/slice2freezej/Main.cpp @@ -223,7 +223,7 @@ FreezeGenerator::generate(UnitPtr& unit, const Dict& dict) out << eb; out << nl << "catch(java.io.UnsupportedEncodingException ex)"; out << sb; - out << nl << "Ice.SystemException e = new Ice.SystemException();"; + out << nl << "Ice.SyscallException e = new Ice.SyscallException();"; out << nl << "e.initCause(ex);"; out << nl << "throw e;"; out << eb; @@ -375,7 +375,7 @@ FreezeGenerator::generate(UnitPtr& unit, const Dict& dict) out << eb; out << nl << "catch(java.io.UnsupportedEncodingException ex)"; out << sb; - out << nl << "Ice.SystemException e = new Ice.SystemException();"; + out << nl << "Ice.SyscallException e = new Ice.SyscallException();"; out << nl << "e.initCause(ex);"; out << nl << "throw e;"; out << eb; |