mirror of https://github.com/morpheus65535/bazarr
13 lines
326 B
Python
13 lines
326 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): ...
|
|
class TooBig(DNSException): ...
|
|
class UnexpectedEnd(SyntaxError): ...
|