Skip to content

Commit

Permalink
Fix exception logs in FillBetweenCurvesGen
Browse files Browse the repository at this point in the history
refs # 22848
  • Loading branch information
Daniel Levario authored and GiudGiud committed Aug 3, 2023
1 parent 3095875 commit ab061a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/src/meshgenerators/FillBetweenCurvesGenerator.C
Expand Up @@ -119,7 +119,7 @@ FillBetweenCurvesGenerator::generate()
}
catch (MooseException & e)
{
paramError("curve_1", e.what());
paramError("input_mesh_1", e.what());
}
try
{
Expand All @@ -130,7 +130,7 @@ FillBetweenCurvesGenerator::generate()
}
catch (MooseException & e)
{
paramError("curve_2", e.what());
paramError("input_mesh_2", e.what());
}

std::vector<Point> positions_vector_1;
Expand Down

0 comments on commit ab061a1

Please sign in to comment.