source:
trunk/src/allmydata/immutable/downloader/common.py
Last change on this file was 1cfe843d, checked in by Alexandre Detiste <alexandre.detiste@…>, at 2024-02-22T23:40:25Z | |
---|---|
|
|
File size: 325 bytes |
Line | |
---|---|
1 | """ |
2 | Ported to Python 3. |
3 | """ |
4 | |
5 | (AVAILABLE, PENDING, OVERDUE, COMPLETE, CORRUPT, DEAD, BADSEGNUM) = \ |
6 | ("AVAILABLE", "PENDING", "OVERDUE", "COMPLETE", "CORRUPT", "DEAD", "BADSEGNUM") |
7 | |
8 | class BadSegmentNumberError(Exception): |
9 | pass |
10 | class WrongSegmentError(Exception): |
11 | pass |
12 | class BadCiphertextHashError(Exception): |
13 | pass |
Note: See TracBrowser
for help on using the repository browser.