vote up 10 vote down star
7

What's the proper way to declare custom exception classes in modern Python? My primary goal is to follow whatever standard other exception classes have, so that (for instance) any extra string I include in the exception is printed out by whatever tool caught the exception.

By "modern Python" I mean something that will run in Python 2.5 but be 'correct' for the Python 2.6 and Python 3.* way of doing things. And by "custom" I mean an Exception object that can include extra data about the cause of the error: a string, maybe also some other arbitrary object relevant to the exception.

I was tripped up by the following deprecation warning in Python 2.6.2:

>>> class MyError(Exception):
...     def __init__(self, message):
...     	self.message = message
... 
>>> MyError("foo")
_sandbox.py:3: DeprecationWarning: BaseException.message has been deprecated as of Python 2.6

It seems crazy that BaseException has a special meaning for attributes named "message". I gather from PEP-352 that attribute did have a special meaning in 2.5 they're trying to deprecate away, so I guess that name (and that one alone) is now forbidden? Ugh.

I'm also fuzzily aware that Exception has some magic parameter "args", but I've never known how to use it. Nor am I sure it's the right way to do things going forward; a lot of the discussion I found online suggested they were trying to do away with args in Python 3.

Update: two answers have suggested overriding __init__, and __str__/__unicode__/__repr__. That seems like a lot of typing, is it necessary?

flag
*args (or *foo, or *whatever, all that matters is that it has the star in front) is for functions that have an indefinite number of positional arguments. So if you have def myfunction(*args), you can call it like myfunction("foo") or myfunction("foo", "bar") and the arguments will be accessible in the body of the function as the tuple args. See docs.python.org/tutorial/… for more information. – Jeff Bradberry Aug 23 at 21:58
Understood, but in addition "args" is a special member name for the Exception type. – Nelson Aug 23 at 22:07
1  
Yes. python.org/dev/peps/pep-0352 shows what is going on behind the scenes with current Exceptions. Basically, __init__ is setting self.args = args. – Jeff Bradberry Aug 23 at 22:20

3 Answers

vote up 8 vote down check

Maybe I missed the question, but why not:

class MyException(Exception):
    pass

Edit: to override somethign (or pass extra args), do this:

class ValidationError(Exception):
    def __init__(self, message, Errors):

        # Call the base class constructor with the parameters it needs
        Exception.__init__(self, message)

        # Now for your custom code...
        self.Errors = Errors

That way you could pass dict of error messages to the second param, and get to it later with e.Errors

link|flag
+1. It's interesting to know that the arguments passed to the constructor can be retrieved in the args attribute (it's a tuple). – Bastien Léonard Aug 23 at 22:01
Hmm, that does seem to work nicely and satisfies my desire not to type much. The default str() and repr() methods in Exception seem to do a good job of printing out any arguments passed into the MyException() constructor. Is this using Exception.args? Is it good style in modern Python? If I need to override __init__ for some reason, what's the right way to fill *args? – Nelson Aug 23 at 22:06
+1. The OP doesn't need to do anything tricky, so why write boilerplate to do what the base Exception class already does? – Jeff Bradberry Aug 23 at 22:10
@Nelson: see the Edit above for a good way to add behavior. – gahooa Aug 24 at 0:31
ty for help. For future posterity: PEP 0352's sample code for BaseException shows exactly what's going on with args, __str()__, etc. – Nelson Aug 24 at 14:19
vote up 1 vote down

No, "message" is not forbidden. It's just deprecated. You application will work fine with using message. But you may want to get rid of the deprecation error, of course.

When you create custom Exception classes for your application, many of them do not subclass just from Exception, but from others, like ValueError or similar. Then you have to adapt to their usage of variables.

And if you have many exceptions in your application it's usually a good idea to have a common custom base class for all of them, so that users of your modules can do

try:
    ...
except NelsonsExceptions:
    ...

And in that case you can do the __init__ and __str__ needed there, so you don't have to repeat it for every exception. But simply calling the message variable something else than message does the trick.

In any case, you only need the __init__ or __str__ if you do something different from what Exception itself does. And because if the deprecation, you then need both, or you get an error. That's not a whole lot of extra code you need per class. ;)

link|flag
vote up 3 vote down

You should override __repr__ or __unicode__ methods instead of using message, the args you provide when you construct the exception will be in args member variable when you need.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.