mirror of
https://github.com/Thor77/TeamspeakStats.git
synced 2025-03-12 17:44:32 -04:00
15 lines
296 B
Python
15 lines
296 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
class InvalidConfiguration(Exception):
|
|
'''
|
|
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
|