Antares Xpansion
Investment simulations for Antares studies
Loading...
Searching...
No Matches
Exceptions.h
1#pragma once
2
3class IniFileNotFound: public std::runtime_error
4{
5public:
6 explicit IniFileNotFound(const std::string& msg):
7 std::runtime_error(msg)
8 {
9 }
10};
Definition Exceptions.h:4