Show Exceptions To Users If It Cancels Their Action

This commit is contained in:
Konloch 2024-09-29 22:04:49 -06:00
parent 133526c0c6
commit efcbaed2e2

AI 샘플 코드 생성 중입니다

Loading...
2 changed files with 2 additions and 2 deletions

View File

@ -129,7 +129,7 @@ public class GlobalHotKeys
} }
catch (Exception ex) catch (Exception ex)
{ {
ex.printStackTrace(); BytecodeViewer.handleException(ex);
} }
}, "Resource Export"); }, "Resource Export");

View File

@ -265,7 +265,7 @@ public class PluginWriter extends JFrame
} }
catch (Exception e) catch (Exception e)
{ {
e.printStackTrace(); BytecodeViewer.handleException(e);
} }
} }