mirror of
https://github.com/lazylibrarian/LazyLibrarian.git
synced 2026-06-12 01:28:41 -04:00
8 lines
129 B
Python
8 lines
129 B
Python
"""bencode.py - encoder + decode exceptions."""
|
|
|
|
|
|
class BencodeDecodeError(Exception):
|
|
"""Bencode decode error."""
|
|
|
|
pass
|