fw4spl
core/fwAtomsPatch/include/fwAtomsPatch/exceptions/Base.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 
8 #ifndef __FWATOMSPATCH_EXCEPTIONS_BASE_HPP__
9 #define __FWATOMSPATCH_EXCEPTIONS_BASE_HPP__
10 
11 #include <fwCore/Exception.hpp>
12 
13 namespace fwAtomsPatch
14 {
15 
16 namespace exceptions
17 {
18 
22 class Base : public fwCore::Exception
23 {
24 public:
25  Base(const std::string& message);
26  virtual ~Base() noexcept
27  {
28  }
29 };
30 
31 
32 } // namespace exceptions
33 } // namespace fwAtomsPatch
34 
35 #endif /* __FWATOMSPATCH_EXCEPTIONS_BASE_HPP__ */
36 
Contains base functionalities used to transform objects from a version to another.
Definition: Abstract.hpp:16