Size: 1591
Comment:
|
Size: 2359
Comment: super() only works for new-style classes
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
I (LionKimbro) don't know much about writing exception classes; Here's hoping someone rewrites this better. |
|
Line 12: | Line 10: |
Exception.__init__(self) | Exception.__init__(self, 'Host Not Found exception: missing %s' % host) |
Line 20: | Line 18: |
raise HostNotFound( "taoriver.net" ) except HostNotFound, X: print "Host Not Found:", X.host |
raise HostNotFound("taoriver.net") except HostNotFound, exc: # Handle exception. print exc # -> 'Host Not Found exception: missing taoriver.net' print exc.host # -> 'taoriver.net' |
Line 25: | Line 26: |
== Overloading __str__ == | == See Also == |
Line 27: | Line 28: |
You can overload {{{__str__}}} to get the exception to explain itself: {{{ #!python class HostNotFound(Exception): def __init__( self, host ): self.host = host def __str__( self ): return "Host Not Found exception: missing %s" % self.host }}} That way, you only need print the exception instance: {{{ #!python try: raise HostNotFound( "taoriver.net" ) except HostNotFound, X: print X }}} I don't know if this is a good idea or not. ''In this instance, there's no need to overload {{{__str__}}}, as the standard Exception already has a {{{__str__}}} method:'' {{{ #!python class HostNotFound(Exception): def __init__(self, host): self.host = host Exception.__init__(self, 'Host Not Found exception: missing %s' % host) }}} |
HandlingExceptions, TracebackModule |
Line 63: | Line 33: |
* When you're logging exceptions, you want access to the traceback information to. After some research, I believe what you use is extract_tb or extract_stack from the traceback module. -- LionKimbro [[DateTime(2003-09-07T15:23:43Z)]] ''Look at cgitb for how to do detailed TB introspection, and as an example of why mixing logic and (HTML) layout is a very bad thing.'' |
|
Line 64: | Line 38: |
''AlexMartelli's "Dos and Don'ts".'' * The new text involving {{{super}}} doesn't seem to work for me. Using Python 2.3: {{{ #!python class LocalNamesSyntaxError(Exception): def __init__(self, msg): self.msg=msg super(LocalNamesSyntaxError, self)('Local Names v1.1 Syntax Error: %s' % msg) }}} {{{ Traceback (most recent call last): File "parser.py", line 92, in ? pprint.pprint(parse_text(test_string)) File "parser.py", line 69, in parse_text cursor=parse_record_type(cursor,line,results) File "parser.py", line 43, in parse_record_type raise LocalNamesSyntaxError("unrecognized v1.1 record type- require LN, NS, X, or PATTERN") File "parser.py", line 17, in __init__ super(LocalNamesSyntaxError, self)('Local Names v1.1 Syntax Error: %s' % msg) TypeError: super() argument 1 must be type, not classobj }}} Is this a Python2.4 v. Python2.3 thing? Or is there a simple error in my code? -- LionKimbro super() only works for new-style classes. Exception is still an old-style class: type 'classobj'. I've fixed the example. -- JohannesGijsbers |
Writing Exception Classes
Exception classes are not special, you just derive them from Exception:
You may later write:
See Also
HandlingExceptions, TracebackModule
Questions
How do you relay the traceback information? Relay the traceback information? Moving it higher up the call-stack? Could you try to explain your question?
When you're logging exceptions, you want access to the traceback information to. After some research, I believe what you use is extract_tb or extract_stack from the traceback module. -- LionKimbro DateTime(2003-09-07T15:23:43Z)
Look at cgitb for how to do detailed TB introspection, and as an example of why mixing logic and (HTML) layout is a very bad thing.
- What better exception-foo is out there?
AlexMartelli's "Dos and Don'ts".
The new text involving super doesn't seem to work for me.
Using Python 2.3:
Traceback (most recent call last): File "parser.py", line 92, in ? pprint.pprint(parse_text(test_string)) File "parser.py", line 69, in parse_text cursor=parse_record_type(cursor,line,results) File "parser.py", line 43, in parse_record_type raise LocalNamesSyntaxError("unrecognized v1.1 record type- require LN, NS, X, or PATTERN") File "parser.py", line 17, in __init__ super(LocalNamesSyntaxError, self)('Local Names v1.1 Syntax Error: %s' % msg) TypeError: super() argument 1 must be type, not classobj
Is this a Python2.4 v. Python2.3 thing? Or is there a simple error in my code? -- LionKimbro
super() only works for new-style classes. Exception is still an old-style class: type 'classobj'. I've fixed the example. -- JohannesGijsbers