i have this in a class:
/* parses a Value out of a String */
public static int parseValue(final String text) throws NumberFormatException {
String cleanedValue = text.replace("-", "").replace(",", ".");
return Math.round(Float.parseFloat(cleanedValue) * 100);
}
For some reason javac doesn't complain that i don't catch the NumberFormatException in the calling code.
Can someone tell me why that is?