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