mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-23 14:31:06 +00: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
|