Overview   Project   Class   Tree   Deprecated   Index 
Grammatica 1.5 Documentation
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

PerCederberg.Grammatica.Runtime.RE
Enum RegExpException.ErrorType

System.Object
   |
   +--RegExpException.ErrorType

   in RegExpException.cs

The error type enumeration.


Field Summary
INVALID_REPEAT_COUNT
          The invalid repeat count error constant.
UNEXPECTED_CHARACTER
          The unexpected character error constant.
UNSUPPORTED_ESCAPE_CHARACTER
          The unsupported escape character error constant.
UNSUPPORTED_SPECIAL_CHARACTER
          The unsupported special character error constant.
UNTERMINATED_PATTERN
          The unterminated pattern error constant.
 

Field Detail

INVALID_REPEAT_COUNT

public INVALID_REPEAT_COUNT
The invalid repeat count error constant. This error is used when a repetition count of zero is specified, or when the minimum exceeds the maximum.

UNEXPECTED_CHARACTER

public UNEXPECTED_CHARACTER
The unexpected character error constant. This error is used when a character was read that didn't match the allowed set of characters at the given position.

UNSUPPORTED_ESCAPE_CHARACTER

public UNSUPPORTED_ESCAPE_CHARACTER
The unsupported escape character error constant. This error is used when an escape character construct is used in the pattern, but not supported in this implementation.

UNSUPPORTED_SPECIAL_CHARACTER

public UNSUPPORTED_SPECIAL_CHARACTER
The unsupported special character error constant. This error is used when special regular expression characters are used in the pattern, but not supported in this implementation.

UNTERMINATED_PATTERN

public UNTERMINATED_PATTERN
The unterminated pattern error constant. This error is used when more characters were expected in the pattern.

 Overview   Project   Class   Tree   Deprecated   Index 
Grammatica 1.5 Documentation
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD