#include <portable_binary_iarchive.hpp>
◆ exception_code
| Enumerator |
|---|
| incompatible_integer_size | |
Definition at line 45 of file portable_binary_iarchive.hpp.
45 {
@ incompatible_integer_size
enum boost::archive::portable_binary_iarchive_exception::exception_code m_exception_code
◆ portable_binary_iarchive_exception()
Definition at line 48 of file portable_binary_iarchive.hpp.
48 :
49 boost::archive::archive_exception(boost::archive::archive_exception::other_exception),
51 {}
◆ what()
| virtual const char * boost::archive::portable_binary_iarchive_exception::what |
( |
| ) |
const |
| throw | ( | ) | | | |
|
inlinevirtual |
Definition at line 52 of file portable_binary_iarchive.hpp.
53 {
54 const char *msg = "programmer error";
57 msg = "integer cannot be represented";
58 break;
59 default:
60 msg = boost::archive::archive_exception::what();
61 assert(false);
62 break;
63 }
64 return msg;
65 }
◆ m_exception_code
The documentation for this class was generated from the following file: