Adding note that this has overflow issues and pointing to BigFraction

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1059747 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2011-01-17 04:12:36 +00:00
parent 151220646a
commit 7e8d044b7b
1 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,10 @@ import java.math.BigInteger;
* <p>This class is immutable, and interoperable with most methods that accept
* a <code>Number</code>.</p>
*
* <p>Note that this class is intended for common use cases, it is <i>int</i>
* based and thus suffers from various overflow issues. For a BigInteger based
* equivalent, please see the Commons Math BigFraction class. </p>
*
* @author Apache Software Foundation
* @author Travis Reeder
* @author Tim O'Brien