- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- java.util.IllegalFormatException
-
- java.util.IllegalFormatCodePointException
-
- All Implemented Interfaces:
-
Serializable
public class IllegalFormatCodePointException extends IllegalFormatException
如果Character.isValidCodePoint(int)
定义的Unicode代码无效的字符被传递给Formatter
, 则会抛出未经检查的异常。除非另有说明,否则传递一个
null
参数到null
中的任何方法或构造函数将导致抛出NullPointerException
。- 从以下版本开始:
- 1.5
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 IllegalFormatCodePointException(int c)
使用Character.isValidCodePoint(int)
定义的指定的非法代码点构造此类的实例。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 int
getCodePoint()
返回由Character.isValidCodePoint(int)
定义的非法代码点。String
getMessage()
返回此throwable的详细消息字符串。-
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
-
-
-
-
构造方法详细信息
-
IllegalFormatCodePointException
public IllegalFormatCodePointException(int c)
使用Character.isValidCodePoint(int)
定义的指定的非法代码点构造此类的实例。- 参数
-
c
- 非法的Unicode代码点
-
-
方法详细信息
-
getCodePoint
public int getCodePoint()
返回由Character.isValidCodePoint(int)
定义的非法代码点。- 结果
- 非法的Unicode代码点
-
getMessage
public String getMessage()
说明从类别复制:Throwable
返回此throwable的详细消息字符串。- 重写:
-
getMessage
在Throwable
- 结果
-
该
Throwable
实例的详细消息字符串(可能为null
)。
-
-