Skip to content
Snippets Groups Projects
Commit 73e01c15 authored by Martin Christoph Hierholzer's avatar Martin Christoph Hierholzer
Browse files

excluded an assert-like exception from coverage report

parent 71140f8e
No related branches found
No related tags found
No related merge requests found
......@@ -566,7 +566,7 @@ void Application::typedMakeConnection(VariableNetwork &network) {
feedingImpl = createProcessVariable<UserType>(feeder);
}
else {
throw ApplicationExceptionWithID<ApplicationExceptionID::illegalParameter>("Unexpected node type!");
throw ApplicationExceptionWithID<ApplicationExceptionID::illegalParameter>("Unexpected node type!"); // LCOV_EXCL_LINE (assert-like)
}
// if we just have two nodes, directly connect them
......
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