mirror of
https://github.com/pret/pokemon-reverse-engineering-tools.git
synced 2026-08-09 10:47:24 -05:00
14 lines
297 B
Python
14 lines
297 B
Python
"""
|
|
Custom exceptions used throughout the project.
|
|
"""
|
|
|
|
class AddressException(Exception):
|
|
"""
|
|
There was a problem with an address. Maybe it was out of range or invalid.
|
|
"""
|
|
|
|
class TextScriptException(Exception):
|
|
"""
|
|
TextScript encountered an inconsistency or problem.
|
|
"""
|