Ejemplo

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

Solución
Elimine Throwable.printStackTrace(), en su lugar utilice la infraestructura de registro cronológico.

public static void main( String[] args ) {
for ( int i = 0; i < args.length; i++ ) {
try {
Integer.parseInt( args[ i ] );
} catch ( NumberFormatException e ) {
// POR HACER: anotar mediante la infraestructura de registro cronológico
}
}
}