Exemplo n.º 1
0
 def __init__(self, code, *args, **kwargs):
     Error.__init__(self, *args, **kwargs)
     self.code = code
Exemplo n.º 2
0
 def __init__(self, server_error):
     Error.__init__(self, "Server returned an error.")
     self.server_error = server_error
Exemplo n.º 3
0
 def __init__(self, *args, **kwargs):
     Error.__init__(self, *args, **kwargs)
Exemplo n.º 4
0
 def __init__(self):
     Error.__init__(self, "This is a private group.")
Exemplo n.º 5
0
 def __init__(self):
     Error.__init__(self, "The user's profile page is not available.")
Exemplo n.º 6
0
 def __init__(self, code, *args, **kwargs):
     Error.__init__(self, *args, **kwargs)
     self.code = code
Exemplo n.º 7
0
 def __init__(self, *args, **kwargs):
     Error.__init__(self, *args, **kwargs)
Exemplo n.º 8
0
 def __init__(self, server_error):
     Error.__init__(self, 'Server returned an error.')
     self.server_error = server_error
Exemplo n.º 9
0
 def __init__(self):
     Error.__init__(self, "The user's profile page is not available.")
Exemplo n.º 10
0
 def __init__(self):
     Error.__init__(self, 'This is a private group.')