mirror of
https://github.com/hyugogirubato/cbz.git
synced 2026-09-26 13:31:00 +00:00
19 lines
421 B
Python
19 lines
421 B
Python
class PyCBZHelperException(Exception):
|
|
"""Exceptions used by PyCBZHelper."""
|
|
|
|
|
|
class InvalidKeyValue(PyCBZHelperException):
|
|
"""The key value is invalid."""
|
|
|
|
|
|
class MissingPageFile(PyCBZHelperException):
|
|
"""No page available."""
|
|
|
|
|
|
class InvalidFileExtension(PyCBZHelperException):
|
|
"""Invalid file extension."""
|
|
|
|
|
|
class FileNotFound(PyCBZHelperException):
|
|
"""The specified source file was not found."""
|