passwordfile/io/parsingexception.h

19 lines
428 B
C++

#ifndef PASSWORD_FILE_IO_PARSINGEXCEPTION_H
#define PASSWORD_FILE_IO_PARSINGEXCEPTION_H
#include "../global.h"
#include <stdexcept>
#include <string>
namespace Io {
class PASSWORD_FILE_EXPORT ParsingException : public std::runtime_error {
public:
ParsingException(const std::string &message = std::string()) noexcept;
~ParsingException() noexcept;
};
} // namespace Io
#endif // PASSWORD_FILE_IO_PARSINGEXCEPTION_H