Exemplo n.º 1
0
 def __init__(self, component):
     if IProjectGroup.providedBy(component):
         component_type = 'project group'
     else:
         component_type = component.__class__.__name__.lower()
     LaunchpadFault.__init__(
         self, component_name=component.displayname,
         component_type=component_type)
Exemplo n.º 2
0
 def __init__(self, distro_name):
     LaunchpadFault.__init__(self, distro_name=distro_name)
Exemplo n.º 3
0
 def __init__(self, bug_id):
     LaunchpadFault.__init__(self, bug_id=bug_id)
Exemplo n.º 4
0
 def __init__(self, product_name):
     LaunchpadFault.__init__(self, product_name=product_name)
     self.product_name = product_name
Exemplo n.º 5
0
 def __init__(self, name):
     self.name = name
     LaunchpadFault.__init__(self, name=name)
Exemplo n.º 6
0
 def __init__(self, job_id):
     LaunchpadFault.__init__(self, job_id=job_id)
Exemplo n.º 7
0
 def __init__(self, distroseries_name):
     self.distroseries_name = distroseries_name
     LaunchpadFault.__init__(self, distroseries_name=distroseries_name)
Exemplo n.º 8
0
 def __init__(self, message="Not found."):
     LaunchpadFault.__init__(self, message=message)
Exemplo n.º 9
0
 def __init__(self, component):
     LaunchpadFault.__init__(self, object_name=component.displayname)
Exemplo n.º 10
0
 def __init__(self, team_name, status):
     LaunchpadFault.__init__(self, team_name=team_name, status=status)
Exemplo n.º 11
0
 def __init__(self, team_name):
     LaunchpadFault.__init__(self, team_name=team_name)
Exemplo n.º 12
0
 def __init__(self, branch_url, message):
     LaunchpadFault.__init__(self, branch_url=branch_url, message=message)
Exemplo n.º 13
0
 def __init__(self, parameter_name):
     LaunchpadFault.__init__(self, parameter_name=parameter_name)
Exemplo n.º 14
0
 def __init__(self, package_name):
     LaunchpadFault.__init__(self, package_name=package_name)
Exemplo n.º 15
0
 def __init__(self, unique_name):
     LaunchpadFault.__init__(self, unique_name=unique_name)
Exemplo n.º 16
0
 def __init__(self, message="Permission denied."):
     LaunchpadFault.__init__(self, message=message)
Exemplo n.º 17
0
 def __init__(self, series_name, product):
     LaunchpadFault.__init__(
         self, series_name=series_name, product_name=product.name)
Exemplo n.º 18
0
 def __init__(self, path):
     self.path = path
     LaunchpadFault.__init__(self, path=path)
Exemplo n.º 19
0
 def __init__(self, branch_path):
     LaunchpadFault.__init__(self, branch_path=branch_path)
Exemplo n.º 20
0
 def __init__(self, sourcepackagename):
     self.sourcepackagename = sourcepackagename
     LaunchpadFault.__init__(self, sourcepackagename=sourcepackagename)
Exemplo n.º 21
0
 def __init__(self, error):
     LaunchpadFault.__init__(self, error=error)
Exemplo n.º 22
0
 def __init__(self, server_op, oopsid):
     LaunchpadFault.__init__(self, server_op=server_op, oopsid=oopsid)
     self.oopsid = oopsid
Exemplo n.º 23
0
 def __init__(self, person_name, team_name):
     LaunchpadFault.__init__(
         self, person_name=person_name, team_name=team_name)
Exemplo n.º 24
0
 def __init__(self, email, openid_identifier):
     LaunchpadFault.__init__(
         self, email=email, openid_identifier=openid_identifier)
Exemplo n.º 25
0
 def __init__(self, error):
     error_message = error.args[0].encode('utf-8', 'replace')
     LaunchpadFault.__init__(self, error=error_message)
Exemplo n.º 26
0
 def __init__(self, email_address, type="user"):
     LaunchpadFault.__init__(self, type=type, email_address=email_address)
Exemplo n.º 27
0
 def __init__(self, branch_id):
     LaunchpadFault.__init__(self, branch_id=branch_id)
Exemplo n.º 28
0
 def __init__(self, branch_url):
     LaunchpadFault.__init__(self, branch_url=branch_url)
Exemplo n.º 29
0
 def __init__(self, message="Authorisation required."):
     LaunchpadFault.__init__(self, message=message)