public class ParseException
extends java.lang.Exception
Exception signals that a parse exception of some
sort has occurred.| Constructor and Description |
|---|
ParseException()
Constructs a
ParseException with null
as its error detail message. |
ParseException(java.lang.String s)
Constructs a
ParseException with the specified detail
message. |
public ParseException()
ParseException with null
as its error detail message.public ParseException(java.lang.String s)
ParseException with the specified detail
message. The error message string s can later be
retrieved by the Throwable.getMessage()
method of class Throwable.s - the detail message.