fw4spl
core/fwAtoms/src/fwAtoms/Exception.cpp
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 #include "fwAtoms/Exception.hpp"
8 
9 namespace fwAtoms
10 {
11 
12 Exception::Exception(const std::string &message) noexcept
13  : ::fwCore::Exception(message)
14 {
15 }
16 
17 
19 {
20 }
21 
22 
23 
24 } // namespace fwAtoms
25 
fwAtoms contains basic objects to represent any other kind of object
FWATOMS_API ~Exception() noexcept
Destructor : do nothing.
FWATOMS_API Exception(const std::string &message) noexcept
Constructor.