discord-havoc/constructors.py

32 lines
287 B
Python
Raw Normal View History

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