aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/hybrid/xdr/exceptions.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsde/xsde/cxx/hybrid/xdr/exceptions.cxx')
-rw-r--r--libxsde/xsde/cxx/hybrid/xdr/exceptions.cxx21
1 files changed, 21 insertions, 0 deletions
diff --git a/libxsde/xsde/cxx/hybrid/xdr/exceptions.cxx b/libxsde/xsde/cxx/hybrid/xdr/exceptions.cxx
new file mode 100644
index 0000000..4a66f6c
--- /dev/null
+++ b/libxsde/xsde/cxx/hybrid/xdr/exceptions.cxx
@@ -0,0 +1,21 @@
+// file : xsde/cxx/hybrid/xdr/exceptions.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#include <xsde/cxx/hybrid/xdr/exceptions.hxx>
+
+namespace xsde
+{
+ namespace cxx
+ {
+ namespace hybrid
+ {
+ const char* xdr_exception::
+ what () const throw ()
+ {
+ return "XDR stream operation failed";
+ }
+ }
+ }
+}