Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members

Regular expression error codes


Enumerations

enum  FXRexError {
  REGERR_OK,
  REGERR_EMPTY,
  REGERR_PAREN,
  REGERR_BRACK,
  REGERR_BRACE,
  REGERR_RANGE,
  REGERR_ESC,
  REGERR_COUNT,
  REGERR_NOATOM,
  REGERR_REPEAT,
  REGERR_BACKREF,
  REGERR_CLASS,
  REGERR_COMPLEX,
  REGERR_MEMORY,
  REGERR_TOKEN
}
 Regular expression error codes. More...


Enumeration Type Documentation

enum FX::FXRexError
 

Enumeration values:
REGERR_EMPTY  Empty pattern.
REGERR_PAREN  Unmatched parenthesis.
REGERR_BRACK  Unmatched bracket.
REGERR_BRACE  Unmatched brace.
REGERR_RANGE  Bad character range.
REGERR_ESC  Bad escape sequence.
REGERR_COUNT  Bad counted repeat.
REGERR_NOATOM  No atom preceding repetition.
REGERR_REPEAT  Repeat following repeat.
REGERR_BACKREF  Bad backward reference.
REGERR_CLASS  Bad character class.
REGERR_COMPLEX  Expression too complex.
REGERR_MEMORY  Out of memory.
REGERR_TOKEN  Illegal token.