Passwordfile library  3.1.4
C++ library to read/write passwords from/to encrypted files
parsingexception.h
Go to the documentation of this file.
1 #ifndef PARSINGEXCEPTION_H
2 #define PARSINGEXCEPTION_H
3 
4 #include "../global.h"
5 
6 #include <stdexcept>
7 #include <string>
8 
9 namespace Io {
10 
11 class PASSWORD_FILE_EXPORT ParsingException : public std::runtime_error {
12 public:
13  ParsingException(const std::string &message = std::string()) USE_NOTHROW;
14  virtual ~ParsingException() USE_NOTHROW;
15 };
16 }
17 
18 #endif // PARSINGEXCEPTION_H
Contains all IO related classes.
#define PASSWORD_FILE_EXPORT
Marks the symbol to be exported by the passwordfile library.
The exception that is thrown when a parsing error occurs.