Skip to content
Snippets Groups Projects
Commit cfe5537f authored by Theodoros Katzalis's avatar Theodoros Katzalis
Browse files

Fix a small bug in ErrorHandler: Replace the `UnknownInternalError` to `errorCode`

parent 93f09e67
No related branches found
No related tags found
No related merge requests found
...@@ -29,7 +29,7 @@ void ErrorHandler::reportError(const Message &message, RoutingErrorType errorCod ...@@ -29,7 +29,7 @@ void ErrorHandler::reportError(const Message &message, RoutingErrorType errorCod
} }
void ErrorHandler::reportInternalError(ErrorHandler::InternalErrorType errorCode) { void ErrorHandler::reportInternalError(ErrorHandler::InternalErrorType errorCode) {
logError(UnknownInternalError); logError(errorCode);
} }
template<typename ErrorType> template<typename ErrorType>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment