Package jflex.core
Class RegExpException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jflex.core.RegExpException
- All Implemented Interfaces:
Serializable
This exception is used for unexpected errors in in regexp recursion, such as unexpected
expression type or structure.
If this is encountered, this means there is a bug.
- Version:
- JFlex 1.8.2
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final long
Required by serialisation interface -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
RegExpException
(String message) Creates a new RegExpException with the specified messageCreates a new RegExpException for the specified regular expression. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDRequired by serialisation interface- See Also:
-
-
Constructor Details
-
RegExpException
Creates a new RegExpException with the specified message- Parameters:
message
- the error description presented to the user.
-
RegExpException
Creates a new RegExpException for the specified regular expression.- Parameters:
e
- the regexp that caused this exception.
-