// file : xsde/cxx/hybrid/cdr/exceptions.cxx // copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC // license : GNU GPL v2 + exceptions; see accompanying LICENSE file #include namespace xsde { namespace cxx { namespace hybrid { const char* cdr_exception:: what () const throw () { return "CDR stream operation failed"; } } } }