mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-01-09 00:08:04 +08:00
11 lines
256 B
Python
11 lines
256 B
Python
|
from typing import Set, Optional, Dict
|
||
|
|
||
|
class DNSException(Exception):
|
||
|
supp_kwargs : Set[str]
|
||
|
kwargs : Optional[Dict]
|
||
|
fmt : Optional[str]
|
||
|
|
||
|
class SyntaxError(DNSException): ...
|
||
|
class FormError(DNSException): ...
|
||
|
class Timeout(DNSException): ...
|