예제 #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
파일: exceptions.py 프로젝트: Oneiroi/swift
 def __init__(self, seconds=None, msg=None):
     TimeoutError.__init__(self, seconds=seconds)
     self.msg = msg
예제 #4
0
파일: exceptions.py 프로젝트: Oneiroi/swift
 def __str__(self):
     return '%s: %s' % (TimeoutError.__str__(self), self.msg)
예제 #5
0
 def __str__(self):
     return "%s: %s" % (TimeoutError.__str__(self), self.msg)