#include <portable_binary_oarchive.hpp>
◆ exception_code
Definition at line 44 of file portable_binary_oarchive.hpp.
44 {
enum boost::archive::portable_binary_oarchive_exception::exception_code m_exception_code
◆ portable_binary_oarchive_exception()
Definition at line 47 of file portable_binary_oarchive.hpp.
47 :
48 boost::archive::archive_exception(boost::archive::archive_exception::other_exception),
50 {}
◆ what()
| virtual const char * boost::archive::portable_binary_oarchive_exception::what |
( |
| ) |
const |
| throw | ( | ) | | | |
|
inlinevirtual |
Definition at line 51 of file portable_binary_oarchive.hpp.
52 {
53 const char *msg = "programmer error";
56 msg = "cannot be both big and little endian";
57 break;
58 default:
59 msg = boost::archive::archive_exception::what();
60 assert(false);
61 break;
62 }
63 return msg;
64 }
◆ m_exception_code
The documentation for this class was generated from the following file: