/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: Robert Collins
  • Date: 2007-04-23 00:28:58 UTC
  • mfrom: (2440 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2441.
  • Revision ID: robertc@robertcollins.net-20070423002858-l285r8h8a9jjco64
Merge up with bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1247
1247
 
1248
1248
    _fmt = ("The medium '%(medium)s' has reached its concurrent request limit."
1249
1249
            " Be sure to finish_writing and finish_reading on the"
1250
 
            " current request that is open.")
 
1250
            " currently open request.")
1251
1251
 
1252
1252
    internal_error = True
1253
1253
 
2085
2085
 
2086
2086
    def __init__(self, tag_name):
2087
2087
        self.tag_name = tag_name
 
2088
 
 
2089
 
 
2090
class UnexpectedSmartServerResponse(BzrError):
 
2091
 
 
2092
    _fmt = "Could not understand response from smart server: %(response_tuple)r"
 
2093
 
 
2094
    def __init__(self, response_tuple):
 
2095
        self.response_tuple = response_tuple
 
2096