Skip to content

Instantly share code, notes, and snippets.

@j4cksw
Created May 16, 2016 15:33
Show Gist options
  • Select an option

  • Save j4cksw/d5c5bb796e005362bb5c22f531aa4b88 to your computer and use it in GitHub Desktop.

Select an option

Save j4cksw/d5c5bb796e005362bb5c22f531aa4b88 to your computer and use it in GitHub Desktop.
public class UsersResource {
public User findUserById(String userId){
User result = userDAO.findById(userId);
if( result == null ){
throw new RuntimeException();
}
return result;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment