mirror of
https://github.com/BrianPugh/game-and-watch-patch.git
synced 2025-12-16 07:16:26 +01:00
27 lines
527 B
Python
27 lines
527 B
Python
class MissingSymbolError(Exception):
|
|
""""""
|
|
|
|
|
|
class InvalidStockRomError(Exception):
|
|
"""The provided stock ROM did not contain the expected data."""
|
|
|
|
|
|
class InvalidPatchError(Exception):
|
|
""""""
|
|
|
|
|
|
class ParsingError(Exception):
|
|
""""""
|
|
|
|
|
|
class NotEnoughSpaceError(Exception):
|
|
"""Not enough storage space in dst to perform the operation."""
|
|
|
|
|
|
class BadImageError(Exception):
|
|
"""Provided image is corrupt/wrong dimensions/wrong format"""
|
|
|
|
|
|
class InvalidIPSError(Exception):
|
|
"""Corrupt IPS Patch file"""
|