Add exceptions

This commit is contained in:
Joscha 2016-09-20 20:49:20 +00:00
parent cc5a342f91
commit 19de0177d5

11
yaboli/exceptions.py Normal file
View file

@ -0,0 +1,11 @@
class YaboliException(Exception):
"""
Generic yaboli exception class.
"""
pass
class CreateBotException(YaboliException):
"""
Raised when a bot could not be created.
"""
pass