Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
verveerpj committed Jun 2, 2023
1 parent 6842257 commit 1d4cbac
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/opm/input/eclipse/EclipseState/Tables/TableManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1535,6 +1535,8 @@ std::optional<JFunc> make_jfunc(const Deck& deck) {
try {
std::shared_ptr<TableType> table = std::make_shared<TableType>(dataItem, useJFunc(), tableIdx );
container.addTable( tableIdx , table );
} catch (const std::runtime_error& err) {
throw OpmInputError(err, tableKeyword.location());
} catch (const std::invalid_argument& err) {
throw OpmInputError(err, tableKeyword.location());
}
Expand Down

0 comments on commit 1d4cbac

Please sign in to comment.