Skip to content
Snippets Groups Projects
Commit b0769b7b authored by David Abram Cargill's avatar David Abram Cargill
Browse files

Use errType of Error to be consistent with previous behaviour.

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@374368 13f79535-47bb-0310-9956-ffa450edef68
parent fc393f4d
No related branches found
No related tags found
No related merge requests found
...@@ -230,7 +230,13 @@ void XSDErrorReporter::emitError(const XMLException& except, ...@@ -230,7 +230,13 @@ void XSDErrorReporter::emitError(const XMLException& except,
{ {
const XMLCh* const errText = except.getMessage(); const XMLCh* const errText = except.getMessage();
const unsigned int toEmit = except.getCode(); const unsigned int toEmit = except.getCode();
XMLErrorReporter::ErrTypes errType = XMLErrs::errorType((XMLErrs::Codes) toEmit); //Before the code was modified to call this routine it used to use
//the XMLErrs::DisplayErrorMessage error message, which is just {'0'}
//and that error message has errType of Error. So to be consistent
//with previous behaviour set the errType to be Error instead of
//getting the error type off of the exception.
//XMLErrorReporter::ErrTypes errType = XMLErrs::errorType((XMLErrs::Codes) toEmit);
XMLErrorReporter::ErrTypes errType = XMLErrorReporter::ErrType_Error;
if (fErrorReporter) if (fErrorReporter)
fErrorReporter->error(toEmit, XMLUni::fgExceptDomain, errType, errText, aLocator->getSystemId(), fErrorReporter->error(toEmit, XMLUni::fgExceptDomain, errType, errText, aLocator->getSystemId(),
...@@ -238,8 +244,8 @@ void XSDErrorReporter::emitError(const XMLException& except, ...@@ -238,8 +244,8 @@ void XSDErrorReporter::emitError(const XMLException& except,
aLocator->getColumnNumber()); aLocator->getColumnNumber());
// Bail out if its fatal an we are to give up on the first fatal error // Bail out if its fatal an we are to give up on the first fatal error
if (errType == XMLErrorReporter::ErrType_Fatal && fExitOnFirstFatal) //if (errType == XMLErrorReporter::ErrType_Fatal && fExitOnFirstFatal)
throw (XMLErrs::Codes) toEmit; // throw (XMLErrs::Codes) toEmit;
} }
XERCES_CPP_NAMESPACE_END XERCES_CPP_NAMESPACE_END
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment