- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.util.IllformedLocaleException
-
- All Implemented Interfaces:
-
Serializable
public class IllformedLocaleException extends RuntimeException
通过Locale
和Locale.Builder
中的方法抛出,以表明参数不是一个格式正确的BCP 47标签。- 从以下版本开始:
- 1.7
- 另请参见:
-
Locale
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 IllformedLocaleException()
构造一个新的IllformedLocaleException
,没有详细信息,-1作为错误索引。IllformedLocaleException(String message)
构造一个新的IllformedLocaleException
与给定的消息和-1作为错误索引。IllformedLocaleException(String message, int errorIndex)
构造一个新的IllformedLocaleException
与给定的消息和错误索引。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 int
getErrorIndex()
返回发现错误的索引。-
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, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
IllformedLocaleException
public IllformedLocaleException()
构造一个新的IllformedLocaleException
,没有详细信息,-1作为错误索引。
-
IllformedLocaleException
public IllformedLocaleException(String message)
构造一个新的IllformedLocaleException
与给定的消息和-1作为错误索引。- 参数
-
message
- 消息
-
IllformedLocaleException
public IllformedLocaleException(String message, int errorIndex)
构造一个新的IllformedLocaleException
与给定的消息和错误索引。 误差指数是从错误形成值的开始到解析首先检测到错误的点的近似偏移量。 否定的错误索引值表示错误索引不适用或未知。- 参数
-
message
- 消息 -
errorIndex
- 指数
-
-