Package Torello.JavaDoc
Class SourceCodeParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- Torello.JavaDoc.ParseException
-
- Torello.JavaDoc.SourceCodeParseException
-
- All Implemented Interfaces:
java.io.Serializable
public class SourceCodeParseException extends ParseException
Exception parsing a Java Source Code 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.
This exception throws when there are errors parsing a'.java'
source code file. This exception is used while the internal JavaParser-Bridge is running. If an exception is thrown while parsing a source-code file, it will be wrapped with aSourceCodeParseException
. In that case, retrieving thegetCause() Throwable
to review the Exception Cause Chain will produce the underlying JavaParser-Bridge Exception.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/JavaDoc/SourceCodeParseException.java
- Open New Browser-Tab: Torello/JavaDoc/SourceCodeParseException.java
-
-
Field Summary
Serializable ID Modifier and Type Field static long
serialVersionUID
-
Fields inherited from class Torello.JavaDoc.ParseException
signature
-
-
Constructor Summary
Constructors Constructor SourceCodeParseException(String message, String signature)
SourceCodeParseException(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
-
SourceCodeParseException
public SourceCodeParseException(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
-
SourceCodeParseException
public SourceCodeParseException(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
-
-