mirror of
https://gitlab.com/LazyLibrarian/LazyLibrarian.git
synced 2026-02-06 18:57:43 +00:00
8 lines
129 B
Python
8 lines
129 B
Python
|
|
"""bencode.py - encoder + decode exceptions."""
|
||
|
|
|
||
|
|
|
||
|
|
class BencodeDecodeError(Exception):
|
||
|
|
"""Bencode decode error."""
|
||
|
|
|
||
|
|
pass
|