Fix failing tests

This commit is contained in:
Rossen Stoyanchev 2017-03-02 11:13:47 -05:00
parent ccb2c6530e
commit ce69855274
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ public class ExceptionHandlerMethodResolver {
* @return a Method to handle the exception, or {@code null} if none found
*/
public Method resolveMethod(Exception exception) {
return resolveMethod(exception);
return resolveMethodByThrowable(exception);
}
/**