fw4spl
io/fwNetworkIO/src/fwNetworkIO/exceptions/Base.cpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2018.
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 "fwNetworkIO/exceptions/Base.hpp"
8 
9 namespace fwNetworkIO
10 {
11 
12 namespace exceptions
13 {
14 
15 Base::Base(const std::string& message) :
16  ::fwCore::Exception(message)
17 {
18 }
19 
20 Base::~Base() noexcept
21 {
22 }
23 
24 } // namespace exceptions
25 } // namespace fwNetworkIO
This namespace fwCore provides common foundations for FW4SPL.
Definition: BaseObject.hpp:16
The namespace fwNetworkIO contains the primary methods to access network.
FWNETWORKIO_API Base(const std::string &message)
Constructor.