Add alter table scripts.

This commit is contained in:
Paulo Gustavo Veiga
2013-03-17 23:40:39 -03:00
parent 67398fe07e
commit 0d81db52f1
3 changed files with 10 additions and 3 deletions

View File

@@ -74,7 +74,10 @@ public class UsersController {
userService.resetPassword(email);
result = new ModelAndView("forgotPasswordSuccess");
} catch (InvalidUserEmailException|InvalidAuthSchemaException e) {
} catch (InvalidUserEmailException e) {
result = new ModelAndView("forgotPasswordError");
}
catch (InvalidAuthSchemaException e) {
result = new ModelAndView("forgotPasswordError");
}
return result;