fix typo in exception message

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1657438 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2015-02-04 22:39:21 +00:00
parent c27480daf8
commit 639f72ee71
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ public class XPathEntityProcessor extends EntityProcessorBase {
data = caw.getReader();
} catch (TransformerException e) {
if (ABORT.equals(onError)) {
wrapAndThrow(SEVERE, e, "Exception in applying XSL Transformeation");
wrapAndThrow(SEVERE, e, "Exception in applying XSL Transformation");
} else if (SKIP.equals(onError)) {
wrapAndThrow(DataImportHandlerException.SKIP, e);
} else {