![]() |
MAK RTIspy API Documentation for HLA 1.3
|
00001 /*********************************************************************** 00002 The IEEE hereby grants a general, royalty-free license to copy, distribute, 00003 display and make derivative works from this material, for all purposes, 00004 provided that any use of the material contains the following 00005 attribution: "Reprinted with permission from IEEE 1516.1(TM)-2010". 00006 Should you require additional information, contact the Manager, Standards 00007 Intellectual Property, IEEE Standards Association (stds-ipr@ieee.org). 00008 ***********************************************************************/ 00009 /*********************************************************************** 00010 IEEE 1516.1 High Level Architecture Interface Specification C++ API 00011 File: EncodingExceptions.h 00012 ***********************************************************************/ 00013 #ifndef RTI_EncodingExcpetions_H_ 00014 #define RTI_EncodingExcpetions_H_ 00015 00016 #include <RTI/SpecificConfig.h> 00017 #include <RTI/Exception.h> 00018 #include <RTI/encoding/EncodingConfig.h> 00019 00020 namespace rti1516e 00021 { 00022 00023 class RTI_EXPORT EncoderException: public Exception 00024 { 00025 public: 00026 EncoderException (std::wstring const & message) 00027 throw(); 00028 00029 std::wstring what () const 00030 throw(); 00031 00032 private: 00033 std::wstring _msg; 00034 }; 00035 } 00036 00037 00038 #endif // RTI_EncodingExcpetions_H_ 00039