add documentation for tsstats.exceptions.*

This commit is contained in:
Thor77 2016-05-29 00:25:21 +02:00
parent f72521dc2c
commit f7af9f9d39
4 changed files with 12 additions and 3 deletions

View File

@ -11,3 +11,6 @@ API
.. automethod:: tsstats.client.Clients.__init__
.. automethod:: tsstats.client.Clients.__iter__
.. automodule:: tsstats.exceptions
:members:

View File

@ -56,7 +56,7 @@ author = 'Thor77'
# The short X.Y version.
version = '0.5'
# The full version, including alpha/beta/rc tags.
release = '0.5.3'
release = '0.5.4'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='tsstats',
version='0.5.3',
version='0.5.4',
author='Thor77',
author_email='thor77@thor77.org',
description='A simple Teamspeak stats-generator',

View File

@ -1,6 +1,12 @@
class InvalidConfiguration(Exception):
pass
'''
The configuration is invalid (either config-file or cli-args)
'''
class InvalidLog(Exception):
'''
Something impossible appeared at the logs,
for example a disconnect before a connect
'''
pass