fw4spl
tests/fwTest/include/fwTest/Exception.hpp
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 #ifndef __FWTEST_EXCEPTION_HPP__
8 #define __FWTEST_EXCEPTION_HPP__
9 
10 #include "fwTest/config.hpp"
11 
12 #include <stdexcept>
13 #include <string>
14 
15 namespace fwTest
16 {
17 
18 
19 class FWTEST_CLASS_API Exception : public std::runtime_error
20 {
21 
22 public:
23  FWTEST_API Exception ( const std::string &err );
24 
25 };
26 
27 
28 
29 
30 } // namespace fwTest
31 
32 #endif // __FWTEST_EXCEPTION_HPP__
Definition: Data.hpp:15