Dlaczego poniższy kod podnosi wyjątek pokazany poniżej?
BigDecimal a = new BigDecimal("1.6");
BigDecimal b = new BigDecimal("9.2");
a.divide(b) // results in the following exception.
Wyjątek:
java.lang.ArithmeticException: Non-terminating decimal expansion; no exact representable decimal result.