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:
413 bytes
|
Line | |
---|
1 | /* |
---|
2 | * EStorageReadException.h |
---|
3 | * |
---|
4 | * Created on: Jan 4, 2010 |
---|
5 | * Author: saemy |
---|
6 | */ |
---|
7 | |
---|
8 | #ifndef ESTORAGEREADEXCEPTION_H_ |
---|
9 | #define ESTORAGEREADEXCEPTION_H_ |
---|
10 | |
---|
11 | #include <QString> |
---|
12 | |
---|
13 | #include "exceptions/stdexceptions.h" |
---|
14 | |
---|
15 | namespace Storage { |
---|
16 | class EReadException: public EException { |
---|
17 | public: |
---|
18 | explicit EReadException(const QString& msg) : EException(msg) {} |
---|
19 | }; |
---|
20 | } |
---|
21 | |
---|
22 | #endif /* ESTORAGEREADEXCEPTION_H_ */ |
---|
Note: See
TracBrowser
for help on using the repository browser.