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