mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-14 19:54:38 +08:00
33 lines
372 B
Python
33 lines
372 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
class FeseError(Exception):
|
|
pass
|
|
|
|
|
|
class ExtractionError(FeseError):
|
|
pass
|
|
|
|
|
|
class InvalidFile(FeseError):
|
|
pass
|
|
|
|
|
|
class InvalidStream(FeseError):
|
|
pass
|
|
|
|
|
|
class InvalidSource(FeseError):
|
|
pass
|
|
|
|
|
|
class ConversionError(FeseError):
|
|
pass
|
|
|
|
|
|
class LanguageNotFound(FeseError):
|
|
pass
|
|
|
|
|
|
class UnsupportedCodec(FeseError):
|
|
pass
|