程序包 proguard
类 ParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- proguard.ParseException
-
- 所有已实现的接口:
java.io.Serializable
public class ParseException extends java.lang.ExceptionThisExceptionsignals that a parse exception of some sort has occurred.- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 ParseException()Constructs aParseExceptionwithnullas its error detail message.ParseException(java.lang.String s)Constructs aParseExceptionwith the specified detail message.
-
-
-
构造器详细资料
-
ParseException
public ParseException()
Constructs aParseExceptionwithnullas its error detail message.
-
ParseException
public ParseException(java.lang.String s)
Constructs aParseExceptionwith the specified detail message. The error message stringscan later be retrieved by themethod of classThrowable.getMessage()Throwable.- 参数:
s- the detail message.
-
-