101
101
class BzrCheckError(BzrNewError):
102
102
"""Internal check failed: %(message)s"""
103
103
def __init__(self, message):
107
108
class InvalidEntryName(BzrNewError):
108
109
"""Invalid entry name: %(name)s"""
109
110
def __init__(self, name):
113
115
class InvalidRevisionNumber(BzrNewError):
114
116
"""Invalid revision number %(revno)d"""
115
117
def __init__(self, revno):
119
122
class InvalidRevisionId(BzrNewError):
123
130
class BzrCommandError(BzrError):