32 lines
605 B
Python
32 lines
605 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
from __future__ import absolute_import, division, unicode_literals
|
|
|
|
|
|
class PlaylistError(Exception):
|
|
"""
|
|
Exception for our playlist constructs
|
|
"""
|
|
pass
|
|
|
|
|
|
class LockedDatabase(Exception):
|
|
"""
|
|
Dedicated class to make sure we're not silently catching locked DBs.
|
|
"""
|
|
pass
|
|
|
|
|
|
class SubtitleError(Exception):
|
|
"""
|
|
Exceptions relating to subtitles
|
|
"""
|
|
pass
|
|
|
|
|
|
class ProcessingNotDone(Exception):
|
|
"""
|
|
Exception to detect whether we've completed our sync and did not have to
|
|
abort or suspend.
|
|
"""
|
|
pass
|