Skip to content

Instantly share code, notes, and snippets.

@xordoquy
Last active March 26, 2017 22:42
Show Gist options
  • Save xordoquy/1f810ccf8b11ce02c4cf2c8c4ddd02d6 to your computer and use it in GitHub Desktop.
Save xordoquy/1f810ccf8b11ce02c4cf2c8c4ddd02d6 to your computer and use it in GitHub Desktop.
[medium] Custom Exception example 2
try:
fd = fopen('/tmp/demo', 'w')
except OSError as e:
if e.errno != 21:
raise
print('This is a directory. Expecting a file')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment