CppSerialization  1.0.4.0
C++ Serialization Library
exceptions.h
Go to the documentation of this file.
1 
9 #ifndef CPPSERIALIZATION_EXCEPTIONS_H
10 #define CPPSERIALIZATION_EXCEPTIONS_H
11 
12 #include "errors/exceptions.h"
13 
14 namespace CppSerialization {
15 
17 class SerializationException : public CppCommon::Exception
18 {
19 public:
20  using Exception::Exception;
21 };
22 
23 } // namespace CppSerialization
24 
25 #endif // CPPSERIALIZATION_EXCEPTIONS_H
C++ Serialization project definitions.
Definition: exceptions.h:14