Skip to content

Commit

Permalink
Removed kj exception from catch
Browse files Browse the repository at this point in the history
  • Loading branch information
erinharrington-12 committed Jun 11, 2024
1 parent 7da7e2e commit 4afe887
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Create3Widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -549,9 +549,9 @@ void Create3Widget::run()

}
// catch (const std::exception &e)
catch (const kj::Exception &e)
catch (const std::exception &e)
{
std::cerr << e << '\n';
std::cerr << e.what() << '\n';
}

break;
Expand Down

0 comments on commit 4afe887

Please sign in to comment.