java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
java.util.IllegalFormatException
java.util.IllegalFormatPrecisionException
- 所有已实现的接口:
-
Serializable
当精度为负值而不是
-1
,转换不支持精度,或者值不受支持时抛出未经检查的异常。如果精度无法由int
类型表示,则异常中将使用值Integer.MIN_VALUE
。
- 自从:
- 1.5
- 参见:
-
Constructor Summary
-
Method Summary
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
IllegalFormatPrecisionException
public IllegalFormatPrecisionException(int p) 用指定的精度构造此类的实例。- 参数:
-
p
- 精度
-
-
Method Details
-
getPrecision
public int getPrecision()返回精度。如果精度无法由int
表示,则将返回Integer.MIN_VALUE
。- 返回:
- 精度
-