-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
-
In version 1.0 my code used this datatype in a try catch
net.sf.jsqlparser.parser.TokenMgrError
Now that I've upgraded to version 4.2 I'm curious if there is a new class that replaced this. For now I can catch it as a generic Error.
I think it may have been removed between 1.0 and 1.2
Beta Was this translation helpful? Give feedback.
All reactions
This class is generated by JavaCC using the old template. Using the modern template of JavaCC the class generated is TokenMgrException
. I think you could be right that between 1.0 and 1.2 we switched to the modern Java generation template.
Replies: 1 comment
-
This class is generated by JavaCC using the old template. Using the modern template of JavaCC the class generated is TokenMgrException
. I think you could be right that between 1.0 and 1.2 we switched to the modern Java generation template.
Beta Was this translation helpful? Give feedback.