Skip to content

Instantly share code, notes, and snippets.

@ileacristian
Created October 11, 2011 22:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ileacristian/1279592 to your computer and use it in GitHub Desktop.
Save ileacristian/1279592 to your computer and use it in GitHub Desktop.
python snippet
def foo():
# corpul functiei
raise ValueError("Acesta este mesajul exceptiei")
try:
# bloc pentru codul "suspect"
foo()
except ValueError as exception:
# cod pentru tratarea exceptiei
print(exception.args[0]) # afisam primul argument al exceptiei
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment