Package Torello.HTML.Tools.JavaDoc
Class JavaDocHTMLParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- Torello.HTML.Tools.JavaDoc.ParseException
-
- Torello.HTML.Tools.JavaDoc.JavaDocHTMLParseException
-
- All Implemented Interfaces:
java.io.Serializable
public class JavaDocHTMLParseException extends ParseException
Exception when parsing a Java Doc Generated HTML Web-Page File.
This class provides somepublic final
"inspection & convenience" fields which should guarantee to avoid havingnull
values when thisException
is thrown by an internal method. If as a programmer, you intended to extend use of this class, make sure to pass valid-information & valid-data, to the constructors of this class.
If parsing an HTML-file causes an exception to throw, that exception will be wrapped with aJavaDocHTMLParseException
. In that case, retrieving thegetCause()
Throwable to review the Exception Cause Chain will produce the underlying JavaParser-Bridge Exception, or HTML Reader Exception.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/HTML/Tools/JavaDoc/JavaDocHTMLParseException.java
- Open New Browser-Tab: Torello/HTML/Tools/JavaDoc/JavaDocHTMLParseException.java
-
-
Field Summary
Serializable ID Modifier and Type Field static long
serialVersionUID
-
Fields inherited from class Torello.HTML.Tools.JavaDoc.ParseException
signature
-
-
Constructor Summary
Constructors Constructor JavaDocHTMLParseException(String message, String signature)
JavaDocHTMLParseException(String message, Throwable cause, String signature)
-
-
-
Field Detail
-
serialVersionUID
public static final long serialVersionUID
This fulfils the SerialVersion UID requirement for all classes that implement Java'sinterface java.io.Serializable
. Using theSerializable
Implementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.
Note that Java'sjava.lang.Exception
andjava.lang.Error
classes implement theSerializable interface
, and a warning-free build expects this field be defined here.- See Also:
- Constant Field Values
- Code:
- Exact Field Declaration Expression:
public static final long serialVersionUID = 1;
-
-
Constructor Detail
-
JavaDocHTMLParseException
public JavaDocHTMLParseException(java.lang.String message, java.lang.String signature)
Constructs a new exception with the specified detail message, and onepublic, final
parameter:srcFileName
.- Parameters:
message
- the detail message.signature
- This is the "signature" of the entity that failed.- See Also:
ParseException.signature
-
JavaDocHTMLParseException
public JavaDocHTMLParseException(java.lang.String message, java.lang.Throwable cause, java.lang.String signature)
Constructs a new exception with the specified detail message, cause-chain throwable, and onepublic, final
parameter:srcFileName
.- Parameters:
message
- The detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)signature
- This is the "signature" of the entity that failed.- See Also:
ParseException.signature
-
-