discord-havoc/constructors.py
2025-02-15 13:57:47 -05:00

24 lines
304 B
Python

#!/usr/bin/env python3.12
"""
AI
"""
class AIException(Exception):
"""AI Exception (generic)"""
pass
"""
LoveHate
"""
class LoveHateException(Exception):
"""Love Hate Exception (generic)"""
pass
"""
Misc
"""
class MiscException(Exception):
"""Misc Exception (generic)"""
pass