discord-havoc/constructors.py

22 lines
277 B
Python
Raw Normal View History

2025-02-13 14:51:35 -05:00
"""
AI
"""
class AIException(Exception):
"""AI Exception (generic)"""
pass
"""
LoveHate
"""
class LoveHateException(Exception):
"""Love Hate Exception (generic)"""
pass
2025-02-15 13:57:47 -05:00
"""
Misc
"""
class MiscException(Exception):
"""Misc Exception (generic)"""
pass