Skip to content

Exceptions

SeaDexError

SeaDexError(message: str)

Bases: Exception

Base Exception for all SeaDex related errors.

Source code in src/seadex/_exceptions.py
7
8
9
def __init__(self, message: str) -> None:
    self.message = message
    super().__init__(message)

EntryNotFoundError

EntryNotFoundError(message: str)

Bases: SeaDexError

The requested Entry was not found in SeaDex.

Source code in src/seadex/_exceptions.py
7
8
9
def __init__(self, message: str) -> None:
    self.message = message
    super().__init__(message)

BadBackupFileError

BadBackupFileError(message: str)

Bases: SeaDexError

The backup file is broken.

Source code in src/seadex/_exceptions.py
7
8
9
def __init__(self, message: str) -> None:
    self.message = message
    super().__init__(message)