| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.drools.RuntimeDroolsException org.drools.lang.ParseException
Constructor Summary | |
public | ParseException(String message, int lineNumber) Thrown if there is an exception related to parsing a line in a drl file. | public | ParseException(String message, int lineNumber, Throwable cause) Allows nesting of misc exceptions, yet preserving the line number
that triggered the error. |
ParseException | public ParseException(String message, int lineNumber)(Code) | | Thrown if there is an exception related to parsing a line in a drl file.
For more generic exception, a different exception class will be used.
|
ParseException | public ParseException(String message, int lineNumber, Throwable cause)(Code) | | Allows nesting of misc exceptions, yet preserving the line number
that triggered the error.
|
getLineNumber | public int getLineNumber()(Code) | | The line number on which the error occurred.
|
getMessage | public String getMessage()(Code) | | This will print out a summary, including the line number.
It will also print out the cause message if applicable.
|
|
|