We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e336223 commit 283de23Copy full SHA for 283de23
src/main/java/org/apache/ibatis/executor/loader/ResultLoaderMap.java
@@ -1,5 +1,5 @@
1
/**
2
- * Copyright 2009-2015 the original author or authors.
+ * Copyright 2009-2017 the original author or authors.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
@@ -244,6 +244,8 @@ public Object run() throws Exception {
244
} else {
245
configurationObject = factoryMethod.invoke(null);
246
}
247
+ } catch (final ExecutorException ex) {
248
+ throw ex;
249
} catch (final NoSuchMethodException ex) {
250
throw new ExecutorException("Cannot get Configuration as factory class ["
251
+ this.configurationFactory + "] is missing factory method of name ["
0 commit comments