Skip to content

Instantly share code, notes, and snippets.

@jorgemdnt
Created October 17, 2016 01:16
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 jorgemdnt/d9093050379962ebecdfd29a5cf2a6cb to your computer and use it in GitHub Desktop.
Save jorgemdnt/d9093050379962ebecdfd29a5cf2a6cb to your computer and use it in GitHub Desktop.
# coding=utf-8
class PersonagemNaoEncontradoException(Exception):
def __init__(self, nome):
message = 'Personagem {} não encontrado'.format(nome)
super(PersonagemNaoEncontradoException, self).__init__(message)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment