1179
1179
self.extra = ''
1182
class InvalidImportLine(BzrNewError):
1183
"""Not a valid import statement: %(msg)\n%(text)s"""
1185
is_user_error = False
1187
def __init__(self, text, msg):
1188
BzrNewError.__init__(self)
1193
class ImportNameCollision(BzrNewError):
1194
"""Tried to import an object to the same name as an existing object. %(name)s"""
1196
is_user_error = False
1198
def __init__(self, name):
1199
BzrNewError.__init__(self)