mirror of
https://github.com/hyugogirubato/cbz.git
synced 2026-09-26 13:31:00 +00:00
15 lines
335 B
Python
15 lines
335 B
Python
class PyCBZHelperException(Exception):
|
|
"""Exceptions used by pycbzhelper."""
|
|
|
|
|
|
class InvalidKeyValue(PyCBZHelperException):
|
|
"""The key value is invalid."""
|
|
|
|
|
|
class MissingPageFile(PyCBZHelperException):
|
|
"""No page available."""
|
|
|
|
|
|
class InvalidFilePermission(PyCBZHelperException):
|
|
"""Unable to delete existing file."""
|