Passwordfile library  3.1.4
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 : runtime_error(message)
14 {
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.