#ifndef PARSINGEXCEPTION_H #define PARSINGEXCEPTION_H #include "../global.h" #include #include namespace Io { class PASSWORD_FILE_EXPORT ParsingException : public std::runtime_error { public: ParsingException(const std::string &message = std::string()) USE_NOTHROW; virtual ~ParsingException() USE_NOTHROW; }; } #endif // PARSINGEXCEPTION_H