289
289
class PathsDoNotExist(BzrNewError):
290
292
# used when reporting that paths are neither versioned nor in the working
294
295
def __init__(self, paths):
295
297
from bzrlib.osutils import quotefn
296
298
BzrNewError.__init__(self)
298
300
self.paths_as_string = ' '.join([quotefn(p) for p in paths])
302
303
class BadFileKindError(BzrError):
303
304
"""Specified file is of a kind that cannot be added.