Changeset 4219


Ignore:
Timestamp:
2003-05-01T14:35:30+12:00 (21 years ago)
Author:
kjdon
Message:

added a new comerror type: syntaxError, used by mgppqueryfilter to indicate an invalid query syntax

Location:
trunk/gsdl/src/recpt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/comtypes.cpp

    r1994 r4219  
    3333  else if (err == configurationError) return "configuration error";
    3434  else if (err == systemProblem) return "system problem";
    35 
     35  else if (err == syntaxError) return "query syntax error";
    3636  return "unknown problem";
    3737}
  • trunk/gsdl/src/recpt/comtypes.h

    r1860 r4219  
    4747
    4848enum comerror_t {noError, authenticationFailure, protocolError,
    49          configurationError, systemProblem};
     49         configurationError, systemProblem, syntaxError};
    5050text_t get_comerror_string (comerror_t err);
    5151
Note: See TracChangeset for help on using the changeset viewer.