python-telegram-bot/telegram/error.py

11 lines
235 B
Python
Raw Normal View History

2015-07-08 21:58:18 +02:00
#!/usr/bin/env python
class TelegramError(Exception):
"""Base class for Telegram errors."""
@property
def message(self):
'''Returns the first argument used to construct this error.'''
return self.args[0]