16 lines
213 B
Python
16 lines
213 B
Python
#!/usr/bin/env python3.12
|
|
|
|
"""
|
|
AI
|
|
"""
|
|
class AIException(Exception):
|
|
"""AI Exception (generic)"""
|
|
pass
|
|
|
|
"""
|
|
LoveHate
|
|
"""
|
|
class LoveHateException(Exception):
|
|
"""Love Hate Exception (generic)"""
|
|
pass
|