fw4spl
Failed.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 "fwTools/Failed.hpp"
8 
9 namespace fwTools
10 {
11 
12 Failed::Failed(const std::string &message) noexcept
13  : ::fwCore::Exception(message)
14 {
15 }
16 
17 
18 Failed::~Failed() noexcept
19 {
20 }
21 
22 
23 
24 } // namespace fwTools
The namespace fwTools contains several tools like UUID, factory, dispatche, stringizer, macros, helper.
FWTOOLS_API ~Failed() noexcept
Destructor : do nothing.
Definition: Failed.cpp:18
FWTOOLS_API Failed(const std::string &message) noexcept
Constructor.
Definition: Failed.cpp:12