bad exception handling

PHOTO EMBED

Tue Oct 25 2022 20:53:27 GMT+0000 (Coordinated Universal Time)

Saved by @DonYall #java

File f;
try {
  f = new File("file.txt")
  // More stuff
} catch (Exception e) {
  e.printStackTrace();
}
content_copyCOPY