Allow init of MemberException with no arguments

This commit is contained in:
Michael Spang 2007-12-17 18:44:55 -05:00
parent f37a9452d5
commit 92513f4587
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ def configure():
class MemberException(Exception):
"""Base exception class for member-related errors."""
def __init__(self, ex):
def __init__(self, ex=None):
Exception.__init__(self)
self.ex = ex
def __str__(self):