Created
December 31, 2013 07:09
-
-
Save Spaceghost/8193591 to your computer and use it in GitHub Desktop.
wrapped is unnecessary
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def hooman(name) | |
"I am a pink, fleshy human named, #{name}." | |
rescue ArgumentError => e | |
self.logger "Someone screwed up again, bob." | |
raise HumanError(e) | |
end | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def hooman(name) | |
begin | |
"I am a pink, fleshy human named, #{name}." | |
rescue ArgumentError => e | |
self.logger "Someone screwed up again, bob." | |
raise HumanError(e) | |
end | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment