Module java.base
Package java.util

Class IllegalFormatCodePointException

所有已实现的接口:
Serializable

public non-sealed class IllegalFormatCodePointException extends IllegalFormatException
当将一个由Character.isValidCodePoint(int)定义的无效Unicode代码点的字符传递给Formatter时抛出未经检查的异常。

除非另有规定,在此类中向任何方法或构造函数传递null参数将导致抛出NullPointerException

自从:
1.5
参见:
  • Constructor Details

    • IllegalFormatCodePointException

      public IllegalFormatCodePointException(int c)
      使用由Character.isValidCodePoint(int)定义的指定非法代码点构造此类的实例。
      参数:
      c - 非法的Unicode代码点
  • Method Details