ParseException 是否仅在从字符串转换为日期时抛出?

Is ParseException only thrown for conversion from string to date?

我想弄清楚 ParseException。它的示例重点是"convert from string to date",我还发现:

This is a checked exception and it can occur when you fail to parse a String that is ought to have a special format.

但是我找不到其他案例的例子!!!

那你能帮我解决这个案子吗?还有其他使用 ParseException 的情况吗?

Parse异常的定义根据JAVA

Signals that an error has been reached unexpectedly while parsing

正如它明确指出的那样,它在解析时抛出错误
已编辑
所以解析用例如下
从字符串转换为日期、字符串转换为任何其他格式、模式匹配器、对象解析为自定义对象等...

您可以在此处参考任何示例..... http://www.javased.com/index.php?api=java.text.ParseException