Skip to content
Snippets Groups Projects
Commit b2f9625c authored by Martti Käärik's avatar Martti Käärik
Browse files

Use implementation class STopExceptionImpl

parent e5ef86dc
No related branches found
Tags 20250328.18.28
No related merge requests found
Pipeline #12887 passed
......@@ -920,7 +920,7 @@ public class JUnitTestGenerator extends Renderer {
writeObjective(b);
writeAfter = false;
line("throw new " + STOP_EXCEPTION + "(\"Stop " + getQName(b) + "\");");
line("throw new " + STOP_EXCEPTION + "Impl" + "(\"Stop " + getQName(b) + "\");");
thrownExceptions.add(STOP_EXCEPTION);
}
......@@ -1140,7 +1140,7 @@ public class JUnitTestGenerator extends Renderer {
}
} else if (f.kind.equals("TimeoutResult")) {
line("throw new " + STOP_EXCEPTION + "(\"Timeout\");");
line("throw new " + STOP_EXCEPTION + "Impl" + "(\"Timeout\");");
thrownExceptions.add(STOP_EXCEPTION);
} else
......
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