|
26 | 26 | from b2sdk.exception import BadJson |
27 | 27 | from b2sdk.exception import BadRequest |
28 | 28 | from b2sdk.exception import BadUploadUrl |
29 | | -from b2sdk.exception import BucketIdNotFound |
30 | 29 | from b2sdk.exception import BrokenPipe |
| 30 | +from b2sdk.exception import BucketIdNotFound |
31 | 31 | from b2sdk.exception import BucketNotAllowed |
32 | | -from b2sdk.exception import CapabilityNotAllowed |
33 | 32 | from b2sdk.exception import CapExceeded |
| 33 | +from b2sdk.exception import CapabilityNotAllowed |
34 | 34 | from b2sdk.exception import ChecksumMismatch |
35 | 35 | from b2sdk.exception import ClockSkew |
36 | 36 | from b2sdk.exception import Conflict |
37 | 37 | from b2sdk.exception import ConnectionReset |
38 | 38 | from b2sdk.exception import CopyArgumentsMismatch |
39 | 39 | from b2sdk.exception import DestFileNewer |
| 40 | +from b2sdk.exception import DisablingFileLockNotSupported |
40 | 41 | from b2sdk.exception import DuplicateBucketName |
41 | 42 | from b2sdk.exception import FileAlreadyHidden |
42 | 43 | from b2sdk.exception import FileNameNotAllowed |
|
54 | 55 | from b2sdk.exception import PartSha1Mismatch |
55 | 56 | from b2sdk.exception import RestrictedBucket |
56 | 57 | from b2sdk.exception import RetentionWriteError |
| 58 | +from b2sdk.exception import SSECKeyError |
| 59 | +from b2sdk.exception import SSECKeyIdMismatchInCopy |
57 | 60 | from b2sdk.exception import ServiceError |
| 61 | +from b2sdk.exception import SourceReplicationConflict |
58 | 62 | from b2sdk.exception import StorageCapExceeded |
59 | 63 | from b2sdk.exception import TooManyRequests |
60 | | -from b2sdk.exception import TransientErrorMixin |
61 | 64 | from b2sdk.exception import TransactionCapExceeded |
| 65 | +from b2sdk.exception import TransientErrorMixin |
62 | 66 | from b2sdk.exception import TruncatedOutput |
63 | 67 | from b2sdk.exception import Unauthorized |
64 | 68 | from b2sdk.exception import UnexpectedCloudBehaviour |
|
67 | 71 | from b2sdk.exception import UnrecognizedBucketType |
68 | 72 | from b2sdk.exception import UnsatisfiableRange |
69 | 73 | from b2sdk.exception import UnusableFileName |
70 | | -from b2sdk.exception import SSECKeyIdMismatchInCopy |
71 | | -from b2sdk.exception import SSECKeyError |
72 | 74 | from b2sdk.exception import WrongEncryptionModeForBucketDefault |
73 | 75 | from b2sdk.exception import interpret_b2_error |
74 | 76 | from b2sdk.sync.exception import IncompleteSync |
|
100 | 102 | 'BrokenPipe', |
101 | 103 | 'BucketIdNotFound', |
102 | 104 | 'BucketNotAllowed', |
103 | | - 'CapabilityNotAllowed', |
104 | 105 | 'CapExceeded', |
| 106 | + 'CapabilityNotAllowed', |
105 | 107 | 'ChecksumMismatch', |
106 | 108 | 'ClockSkew', |
107 | 109 | 'Conflict', |
108 | 110 | 'ConnectionReset', |
109 | 111 | 'CopyArgumentsMismatch', |
110 | 112 | 'CorruptAccountInfo', |
111 | 113 | 'DestFileNewer', |
| 114 | + 'DisablingFileLockNotSupported', |
112 | 115 | 'DuplicateBucketName', |
113 | 116 | 'EmptyDirectory', |
114 | 117 | 'EnvironmentEncodingError', |
|
133 | 136 | 'RestrictedBucket', |
134 | 137 | 'RetentionWriteError', |
135 | 138 | 'ServiceError', |
| 139 | + 'SourceReplicationConflict', |
136 | 140 | 'StorageCapExceeded', |
137 | 141 | 'TooManyRequests', |
138 | 142 | 'TransactionCapExceeded', |
139 | 143 | 'TransientErrorMixin', |
140 | 144 | 'TruncatedOutput', |
| 145 | + 'UnableToCreateDirectory', |
141 | 146 | 'Unauthorized', |
142 | 147 | 'UnexpectedCloudBehaviour', |
143 | 148 | 'UnknownError', |
144 | 149 | 'UnknownHost', |
145 | 150 | 'UnrecognizedBucketType', |
146 | | - 'UnableToCreateDirectory', |
147 | | - 'UnsupportedFilename', |
148 | 151 | 'UnsatisfiableRange', |
| 152 | + 'UnsupportedFilename', |
149 | 153 | 'UnusableFileName', |
150 | 154 | 'interpret_b2_error', |
151 | 155 | 'check_invalid_argument', |
|
0 commit comments