示例#1
0
 def __str__(self):
     return '%s: %s' % (TimeoutError.__str__(self), self.msg)
示例#2
0
 def __init__(self, seconds=None, msg=None):
     TimeoutError.__init__(self, seconds=seconds)
     self.msg = msg
示例#3
0
 def __init__(self, seconds=None, msg=None):
     TimeoutError.__init__(self, seconds=seconds)
     self.msg = msg
示例#4
0
 def __str__(self):
     return '%s: %s' % (TimeoutError.__str__(self), self.msg)
示例#5
0
 def __str__(self):
     return "%s: %s" % (TimeoutError.__str__(self), self.msg)