! Custom exception class for all Enterprise functions that can throw exceptions */
| 37 | Custom exception class for all Enterprise functions that can throw exceptions |
| 38 | */ |
| 39 | struct EnterpriseException: std::runtime_error { |
| 40 | EnterpriseException(const std::string& what): std::runtime_error(what) {} |
| 41 | }; |
| 42 | |
| 43 | /*! |
| 44 | Determine if the Enterprise Client has been initialized yet. |