Exemple

public static void main( String[] args ) {
for ( int i = 0; i < args.length; i++ ) {
try {
Integer.parseInt( args[ i ] );
} catch ( NumberFormatException e ) {
e.printStackTrace();
}
}
}

Solution
Supprimez Throwable.printStackTrace() et utilisez la structure de journalisation à la place.

public static void main( String[] args ) {
for ( int i = 0; i < args.length; i++ ) {
try {
Integer.parseInt( args[ i ] );
} catch ( NumberFormatException e ) {
// PENSE-BETE : Consignation à l'aide de l'infrastructure de journalisation
}
}
}