3839404142434445
} private void checkNegativeNumbers(String stringToParse) { if(stringToParse.contains("-")){ String message = composeErrorMessage(stringToParse); throw new NumberException("Negative numbers are not allowed ["+message+"]"); } }