I\'m trying to define my own (very simple) exception class in Python 2.6, but no matter how I do it I get some warning.
First, the simplest way:
class My
Alright, I think I figured it out. This seems to keep PyLint happy:
class MyException(Exception): def __init__(self, message): Exception.__init__(self, message) self.message = message