forked from apache/incubator-kie-drools
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DROOLS-7253] Review and improve drools-lsp parser Visitor design (ap…
…ache#16) * [DROOLS-7253] Review and improve drools-lsp parser Visitor design - Remove currentConstructStack. Utilize return object instead. * - Remove instance fields. Utilize return objects instead.
- Loading branch information
Showing
4 changed files
with
245 additions
and
161 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
drools-drl/drools-drl10-parser/src/main/java/org/drools/parser/DRLParserException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package org.drools.parser; | ||
|
||
public class DRLParserException extends RuntimeException { | ||
|
||
public DRLParserException() { | ||
super(); | ||
} | ||
|
||
public DRLParserException(String message) { | ||
super(message); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.