Changed the package names and modified the README

This commit is contained in:
Rachel Walker
2012-12-11 16:29:30 -08:00
4 changed files with 75 additions and 13 deletions

View File

@@ -29,4 +29,10 @@ public class HelloController {
throw new MyNegativeArraySizeException("oops");
}
@RequestMapping(value = "/unchecked", method = RequestMethod.GET)
@ResponseBody
public Object unchecked() throws Exception {
throw new NullPointerException("an npe");
}
}