24 lines
304 B
Python
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 |