PdCom  5.0
Process data communication client
Exception.h
Go to the documentation of this file.
1 /*****************************************************************************
2  *
3  * Copyright (C) 2021 Bjarne von Horn (vh at igh dot de).
4  *
5  * This file is part of the PdCom library.
6  *
7  * The PdCom library is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Lesser General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or (at your
10  * option) any later version.
11  *
12  * The PdCom library is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
15  * License for more .
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with the PdCom library. If not, see <http://www.gnu.org/licenses/>.
19  *
20  *****************************************************************************/
21 
24 #ifndef PDCOM5_EXCEPTION_H
25 #define PDCOM5_EXCEPTION_H
26 
27 #include "visibility.h"
28 
29 #include <stdexcept>
30 
31 namespace PdCom {
32 
33 struct PDCOM5_PUBLIC Exception : std::runtime_error
34 {
35  using std::runtime_error::runtime_error;
36 };
37 
38 } // namespace PdCom
39 
40 
41 #endif // PDCOM5_EXCEPTION_H
Definition: Exception.h:33
library version string as "major.minor.patch"
Definition: details.h:37