~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/errors.py

Start implementing container format reading and writing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2134
2134
 
2135
2135
    def __init__(self, response_tuple):
2136
2136
        self.response_tuple = response_tuple
 
2137
 
 
2138
 
 
2139
class ContainerError(BzrError):
 
2140
    """Base class of container errors."""
 
2141
 
 
2142
 
 
2143
class UnknownContainerFormatError(ContainerError):
 
2144
 
 
2145
    _fmt = "Unrecognised container format: %(container_format)r"
 
2146
    
 
2147
    def __init__(self, container_format):
 
2148
        self.container_format = container_format
 
2149
 
 
2150
 
 
2151
class UnexpectedEndOfContainerError(ContainerError):
 
2152
 
 
2153
    _fmt = "Unexpected end of container stream"
 
2154
 
 
2155
    internal_error = False
 
2156
 
 
2157
 
 
2158
class UnknownRecordTypeError(ContainerError):
 
2159
 
 
2160
    _fmt = "Unknown record type: %(record_type)r"
 
2161
 
 
2162
    def __init__(self, record_type):
 
2163
        self.record_type = record_type
 
2164
 
 
2165