summaryrefslogtreecommitdiff
path: root/shared/serialize.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'shared/serialize.cpp')
-rw-r--r--shared/serialize.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/serialize.cpp b/shared/serialize.cpp
index 26102820..06d409df 100644
--- a/shared/serialize.cpp
+++ b/shared/serialize.cpp
@@ -10,7 +10,7 @@
using namespace zen;
-void ReadInputStream::throwReadError() const //throw (FileError)
+void ReadInputStream::throwReadError() const //throw FileError
{
throw zen::FileError(_("Error reading from synchronization database:") + " \n" + "\"" + errorObjName_.c_str() + "\"");
}
@@ -32,7 +32,7 @@ ReadInputStream::CharArray ReadInputStream::readArrayC() const
//--------------------------------------------------------------------------------------------------------
-void WriteOutputStream::throwWriteError() const //throw (FileError)
+void WriteOutputStream::throwWriteError() const //throw FileError
{
throw zen::FileError(_("Error writing to synchronization database:") + " \n" + "\"" + errorObjName_.c_str() + "\"");
}
bgstack15