Skip to content

Commit

Permalink
Show Exceptions To Users If It Cancels Their Action
Browse files Browse the repository at this point in the history
  • Loading branch information
Konloch committed Sep 30, 2024
1 parent 133526c commit efcbaed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ else if ((e.getKeyCode() == KeyEvent.VK_S) && ((e.getModifiersEx() & KeyEvent.CT
}
catch (Exception ex)
{
ex.printStackTrace();
BytecodeViewer.handleException(ex);
}
}, "Resource Export");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ public void save()
}
catch (Exception e)
{
e.printStackTrace();
BytecodeViewer.handleException(e);
}
}

Expand Down

0 comments on commit efcbaed

Please sign in to comment.