Passwordfile library  4.0.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 
15 ParsingException::ParsingException(const std::string &message) noexcept
16  : runtime_error(message)
17 {
18 }
19 
23 ParsingException::ParsingException(const char *message) noexcept
24  : runtime_error(message)
25 {
26 }
27 
32 {
33 }
34 
35 } // namespace Io
~ParsingException()
Destroys the parsing exception.
Contains all IO related classes.
ParsingException(const std::string &message=std::string()) noexcept
Constructs a parsing exception.