Passwordfile library  3.1.3
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) USE_NOTHROW :
14  runtime_error(message)
15 {}
16 
21 {}
22 
23 }
virtual ~ParsingException() USE_NOTHROW
Destroys the exception.
ParsingException(const std::string &message=std::string()) USE_NOTHROW
Constructs a parsing exception.
Contains all IO related classes.