Constructor ! * Create a new JavaException */
| 45 | * Create a new JavaException |
| 46 | */ |
| 47 | JavaException(std::string errorMsg) |
| 48 | : message_(std::move(errorMsg)) { |
| 49 | } |
| 50 | |
| 51 | // Destructor |
| 52 | virtual ~JavaException() noexcept = default; |
nothing calls this directly
no outgoing calls
no test coverage detected