3.0
Last change
on this file since 71:415b45c71663 was
71:415b45c71663,
checked in by Sämy Zehnder <saemy.zehnder@…>, 12 years ago
|
- Reorganized all the libraries. libinterfaces and libgateways are removed now and libdatatypes contains now all these files.
|
File size:
335 bytes
|
Line | |
---|
1 | /* |
---|
2 | * EException.h |
---|
3 | * |
---|
4 | * Created on: Jan 4, 2010 |
---|
5 | * Author: saemy |
---|
6 | */ |
---|
7 | |
---|
8 | #ifndef EEXCEPTION_H_ |
---|
9 | #define EEXCEPTION_H_ |
---|
10 | |
---|
11 | #include <stdexcept> |
---|
12 | #include <QString> |
---|
13 | |
---|
14 | class EException: public std::runtime_error { |
---|
15 | public: |
---|
16 | explicit EException(const QString& msg) : std::runtime_error(msg.toStdString()) {} |
---|
17 | }; |
---|
18 | |
---|
19 | #endif /* EEXCEPTION_H_ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.