! * @brief Exception class for semantic errors. */
| 135 | * @brief Exception class for semantic errors. |
| 136 | */ |
| 137 | class semantic_error : public erpc_error |
| 138 | { |
| 139 | public: |
| 140 | /*! |
| 141 | * @brief Exception function for semantic errors. |
| 142 | * |
| 143 | * @param[in] __arg Exception error message. |
| 144 | */ |
| 145 | explicit semantic_error(const std::string &__arg) : erpc_error(__arg) {} |
| 146 | }; |
| 147 | |
| 148 | /*! |
| 149 | * @brief Exception class for internal errors. |
no outgoing calls
no test coverage detected