File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -429,7 +429,7 @@ class Parser {
429429};
430430
431431/* *
432- * Custom exception for errors occurring within the Parser component
432+ * @brief Custom exception thrown when parsing a CAPIO-CL configuration file by @ref Parser
433433 */
434434class ParserException : public std ::exception {
435435 std::string message;
@@ -438,9 +438,18 @@ class ParserException : public std::exception {
438438 explicit ParserException (const std::string &msg) : message(msg) {
439439 print_message (CLI_LEVEL_ERROR, msg);
440440 }
441+
442+ /* *
443+ * Get the description of the error causing the exception
444+ * @return
445+ */
441446 const char *what () const noexcept override { return message.c_str (); }
442447};
443448
449+ /* *
450+ * @brief Dump the current loaded CAPIO-CL configuration from class @ref Engine
451+ * to a CAPIO-CL configuration file.
452+ */
444453class Serializer {
445454 public:
446455 /* *
Original file line number Diff line number Diff line change 1+ generated /**
2+ Doxyfile
You can’t perform that action at this time.
0 commit comments