fw4spl
MissingInformation.hpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2015.
3  * Distributed under the terms of the GNU Lesser General Public License (LGPL) as
4  * published by the Free Software Foundation.
5  * ****** END LICENSE BLOCK ****** */
6 
7 #ifndef __FWATOMSPATCH_EXCEPTIONS_MISSINGINFORMATION_HPP__
8 #define __FWATOMSPATCH_EXCEPTIONS_MISSINGINFORMATION_HPP__
9 
10 #include "fwAtomsPatch/exceptions/Base.hpp"
11 
12 namespace fwAtomsPatch
13 {
14 
15 namespace exceptions
16 {
17 
22 {
23 public:
24  MissingInformation(const std::string& message);
25  virtual ~MissingInformation() noexcept
26  {
27  }
28 };
29 
30 } // namespace exceptions
31 } // namespace fwAtomsPatch
32 
33 #endif /* __FWATOMSPATCH_EXCEPTIONS_MISSINGINFORMATION_HPP__ */
Reports an missing information required for data object patching.
Contains base functionalities used to transform objects from a version to another.
Definition: Abstract.hpp:16