/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

  • Committer: Andrew Bennetts
  • Date: 2008-09-06 09:52:18 UTC
  • mto: This revision was merged to the branch mainline in revision 3695.
  • Revision ID: andrew.bennetts@canonical.com-20080906095218-9k920hp0t6h9bif0
Rename UntranslateableErrorFromSmartServer -> UnknownErrorFromSmartServer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2510
2510
class ErrorFromSmartServer(BzrError):
2511
2511
    """An error was received from a smart server.
2512
2512
 
2513
 
    :seealso: UntranslateableErrorFromSmartServer
 
2513
    :seealso: UnknownErrorFromSmartServer
2514
2514
    """
2515
2515
 
2516
2516
    _fmt = "Error received from smart server: %(error_tuple)r"
2526
2526
        self.error_args = error_tuple[1:]
2527
2527
 
2528
2528
 
2529
 
class UntranslateableErrorFromSmartServer(BzrError):
 
2529
class UnknownErrorFromSmartServer(BzrError):
2530
2530
    """An ErrorFromSmartServer could not be translated into a typical bzrlib
2531
2531
    error.
2532
2532