Skip to content

Instantly share code, notes, and snippets.

@Mariusio
Created April 5, 2016 18:34
Show Gist options
  • Save Mariusio/8db78d023724de600eae770b38a676a3 to your computer and use it in GitHub Desktop.
Save Mariusio/8db78d023724de600eae770b38a676a3 to your computer and use it in GitHub Desktop.
@user = User.find_by(id: params[:id])
unless @user
logger.error 'Not found'
end
begin
@user = User.find(params[:id])
rescue => e
logger.error 'Not found'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment