fw4spl
io/fwPacsIO/src/fwPacsIO/exceptions/Base.cpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2016.
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 "fwPacsIO/exceptions/Base.hpp"
8 
9 namespace fwPacsIO
10 {
11 namespace exceptions
12 {
13 
14 Base::Base(const std::string& message) : ::fwCore::Exception(message)
15 {
16 }
17 
18 // ----------------------------------------------------------------------------
19 
20 Base::~Base() noexcept
21 {
22 }
23 
24 } //exceptions
25 } //fwPacsIO
fwPacsIO contains classes used to communicate with a PACS.
This namespace fwCore provides common foundations for FW4SPL.
Definition: BaseObject.hpp:16
virtual FWPACSIO_API ~Base() noexcept
Destructor.
FWPACSIO_API Base(const std::string &message)
Constructor.