Passwordfile library  3.2.0
C++ library to read/write passwords from/to encrypted files
parsingexception.cpp
Go to the documentation of this file.
1 #include "./parsingexception.h"
2 
3 namespace Io {
4 
13 ParsingException::ParsingException(const std::string &message) noexcept
14  : runtime_error(message)
15 {
16 }
17 
22 {
23 }
24 } // namespace Io
~ParsingException() noexcept
Destroys the exception.
Contains all IO related classes.
ParsingException(const std::string &message=std::string()) noexcept
Constructs a parsing exception.