- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- java.util.IllegalFormatException
-
- java.util.IllegalFormatCodePointException
-
- 实现的所有接口
-
Serializable
public class IllegalFormatCodePointException extends IllegalFormatException
当具有Character.isValidCodePoint(int)
定义的无效Unicode代码点的字符传递给Formatter
时,抛出未经检查的异常。除非另行指定,否则将
null
参数传递给null
中的任何方法或构造函数将导致抛出NullPointerException
。- 从以下版本开始:
- 1.5
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 构造器 描述 IllegalFormatCodePointException(int c)
使用Character.isValidCodePoint(int)
定义的指定非法代码点构造此类的实例。
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 int
getCodePoint()
返回Character.isValidCodePoint(int)
定义的非法代码点。
-
-
-
构造方法详细信息
-
IllegalFormatCodePointException
public IllegalFormatCodePointException(int c)
使用Character.isValidCodePoint(int)
定义的指定非法代码点构造此类的实例。- 参数
-
c
- 非法的Unicode代码点
-
-
方法详细信息
-
getCodePoint
public int getCodePoint()
返回Character.isValidCodePoint(int)
定义的非法代码点。- 结果
- 非法的Unicode代码点
-
-