! * Create a new exception */
| 63 | * Create a new exception |
| 64 | */ |
| 65 | Exception(ExceptionType type, const std::string& errorMsg) |
| 66 | : std::runtime_error{ org::apache::nifi::minifi::utils::StringUtils::join_pack(ExceptionTypeToString(type), ": ", errorMsg) } |
| 67 | { } |
| 68 | |
| 69 | Exception(ExceptionType type, const char* errorMsg) |
| 70 | : std::runtime_error{ org::apache::nifi::minifi::utils::StringUtils::join_pack(ExceptionTypeToString(type), ": ", errorMsg) } |
nothing calls this directly
no test coverage detected