get("/throwexception", (request, response) -> {
throw new UnsupportedOperationException();
});
get("/throwsubclassofbaseexception", (request, response) -> {
throw new SubclassOfBaseException();
});
get("/thrownotfound", (request, response) -> {
throw new NotFoundException();
});