Total Complexity | 0 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | #!/usr/bin/python |
||
2 | # -*- coding: utf-8 -*- |
||
3 | |||
4 | |||
5 | class LimitExceededException(Exception): |
||
6 | pass |
||
7 | |||
8 | |||
9 | class NoLoginIdProvidedException(Exception): |
||
10 | pass |
||
11 | |||
12 | |||
13 | class NoLoginPassProvidedException(Exception): |
||
14 | pass |
||
15 | |||
16 | |||
17 | class NoSteamID64ProvidedException(Exception): |
||
18 | pass |
||
19 | |||
20 | |||
21 | class No2FASecretProvidedException(Exception): |
||
22 | pass |
||
23 | |||
24 | |||
25 | class NoIdentitySecretKeyProvidedException(Exception): |
||
26 | pass |
||
27 | |||
28 | |||
29 | class NoAPIKeyProvidedException(Exception): |
||
30 | pass |
||
31 |