Skip to content

Commit

Permalink
Remove a catch/rethrow that suppressed the python exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Lunderberg committed Aug 24, 2023
1 parent 904d734 commit 7879fb8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/relay/analysis/type_solver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -639,8 +639,6 @@ bool TypeSolver::Solve() {
} catch (const CompileError& err) {
this->Emit(Diagnostic::Error(rnode->span) << err.what());
rnode->resolved = false;
} catch (const Error& e) {
ICHECK(false) << e.what();
}

// Mark inqueue as false after the function call
Expand Down

0 comments on commit 7879fb8

Please sign in to comment.