Java ignorieren den Haken
//IntelliJ Idea IDE suggests to rename a variable to ignored when it's not used
try {
// Your code...
} catch (Exception ignore) { }
Inquisitive Iguana