Lines Matching refs:error

125 // This is useful when you get error messages like:
224 /// Structure used to obtain error details if the parse fails.
226 enum XMLError error;
283 * "parseString" method will initialize the "pResults" variable with some information that can be used to trace the error.
289 * @param pResults a pointer to a XMLResults variable that will contain some information that can be used to trace the XML parsing error. You can have a user-friendly explanation of the parsing error with the "getError" function.
297 * "parseFile" method will initialize the "pResults" variable with some information that can be used to trace the error.
303 * @param pResults a pointer to a XMLResults variable that will contain some information that can be used to trace the XML parsing error. You can have a user-friendly explanation of the parsing error with the "getError" function.
306 /// Parse an XML file and return the root of a XMLNode tree representing the file. A very crude error checking is made. An attempt to guess the Char Encoding used in the file is made.
311 * and program yourself thereafter an "error reporting" tailored for your needs (instead of using the very crude "error reporting"
315 * - display an error message on the console (or inside a messageBox for windows).
325 static XMLCSTR getError(XMLError error); ///< this gives you a user-friendly explanation of the parsing error
576 * \return "0" when there are no errors. If you try to set an unrecognized encoding then the return value will be "1" to signal an error.