- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- java.util.IllegalFormatException
-
- java.util.IllegalFormatPrecisionException
-
- All Implemented Interfaces:
-
Serializable
public class IllegalFormatPrecisionException extends IllegalFormatException
当精度为-1
以外的负值时,抛出未检查的异常,转换不支持精度,否则不支持该值。- 从以下版本开始:
- 1.5
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 IllegalFormatPrecisionException(int p)
构造具有指定精度的此类的实例。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 String
getMessage()
返回此throwable的详细消息字符串。int
getPrecision()
返回精度-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
方法详细信息
-
getPrecision
public int getPrecision()
返回精度- 结果
- 精度
-
getMessage
public String getMessage()
描述从类别复制:Throwable
返回此throwable的详细消息字符串。- 重写:
-
getMessage
在Throwable
- 结果
-
该
Throwable
实例的详细消息字符串(可能为null
)。
-
-