22 lines
277 B
Python
22 lines
277 B
Python
"""
|
|
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 |