Package org.apache.sysds.parser
Class ParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.sysds.api.DMLException
org.apache.sysds.parser.ParseException
- All Implemented Interfaces:
Serializable
This exception is thrown when parse issues are encountered.
- See Also:
-
Field Summary
Fields inherited from class org.apache.sysds.api.DMLException
ERROR_MSG_DELIMITER -
Constructor Summary
ConstructorsConstructorDescriptionParseException(String message) ParseException(String message, Exception e) ParseException(List<CustomErrorListener.ParseIssue> parseIssues, String scriptString) This constructor takes a list of parse issues that were generated during script parsing and the original DML/PyDML script String. -
Method Summary
Modifier and TypeMethodDescriptionObtain the exception message.Obtain the list of parse issues that occurred.Obtain the original DML/PyDML script string.booleanDoes this ParseException contain a list of parse issues?voidsetParseIssues(List<CustomErrorListener.ParseIssue> parseIssues) Set the list of parse issues.voidsetScriptString(String scriptString) Set the original DML/PyDML script string.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ParseException
public ParseException() -
ParseException
-
ParseException
-
ParseException
This constructor takes a list of parse issues that were generated during script parsing and the original DML/PyDML script String.- Parameters:
parseIssues- List of parse issues (syntax errors, validation errors, and validation warnings) generated during parsing.scriptString- The DML/PyDML script String.
-
-
Method Details
-
getParseIssues
Obtain the list of parse issues that occurred.- Returns:
- the list of parse issues
-
setParseIssues
Set the list of parse issues.- Parameters:
parseIssues- the list of parse issues
-
getScriptString
Obtain the original DML/PyDML script string.- Returns:
- the original DML/PyDML script string
-
setScriptString
Set the original DML/PyDML script string.- Parameters:
scriptString- the original DML/PyDML script string
-
hasParseIssues
public boolean hasParseIssues()Does this ParseException contain a list of parse issues?- Returns:
trueif the list of parse issues exists and is greater than 0,falseotherwise
-
getMessage
Obtain the exception message. If there is a list of parse issues, these are used to generate the exception message.- Overrides:
getMessagein classThrowable
-