passwordfile/io/parsingexception.h

19 lines
375 B
C
Raw Normal View History

2015-04-22 19:06:29 +02:00
#ifndef PARSINGEXCEPTION_H
#define PARSINGEXCEPTION_H
2016-08-29 15:42:07 +02:00
#include "../global.h"
2015-04-22 19:06:29 +02:00
#include <stdexcept>
#include <string>
namespace Io {
2017-05-01 03:25:30 +02:00
class PASSWORD_FILE_EXPORT ParsingException : public std::runtime_error {
2015-04-22 19:06:29 +02:00
public:
ParsingException(const std::string &message = std::string()) USE_NOTHROW;
virtual ~ParsingException() USE_NOTHROW;
};
}
#endif // PARSINGEXCEPTION_H