Skip to content

Commit

Permalink
Consistent exception variable names.
Browse files Browse the repository at this point in the history
  • Loading branch information
kruegersp authored Apr 24, 2024
1 parent cf6e669 commit 79779d8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ public void init()
{
m_oSrvr = new ServerSocket(LISTEN_PORT);
}
catch (Exception e)
catch (Exception oEx)
{
throw new RuntimeException(e);
throw new RuntimeException(oEx);
}
}

Expand Down

0 comments on commit 79779d8

Please sign in to comment.