fw4spl
InvalidTag.cpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2017.
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 "fwGdcmIO/exception/InvalidTag.hpp"
8 
9 namespace fwGdcmIO
10 {
11 namespace exception
12 {
13 
14 //----------------------------------------------------------------------------
15 
16 InvalidTag::InvalidTag(const std::string& message) :
17  ::fwCore::Exception(message)
18 {
19 }
20 
21 //----------------------------------------------------------------------------
22 
24 {
25 }
26 
27 //----------------------------------------------------------------------------
28 
29 } // namespace exception
30 } // namespace fwGdcmIO
31 
This namespace fwCore provides common foundations for FW4SPL.
Definition: BaseObject.hpp:16
The namespace fwGdcmIO contains reader, writer and helper for dicom data.
FWGDCMIO_API InvalidTag(const std::string &message)
Constructor.
Definition: InvalidTag.cpp:16
virtual FWGDCMIO_API ~InvalidTag() noexcept
Destructor.
Definition: InvalidTag.cpp:23