1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-07-01 09:30:16 -05:00
Files
IW4M-Admin/Master/env_master/Lib/site-packages/timeago/excepts.py
RaidMax 9f92b64135 Add server version to master api
Add IsEvadedOffense to EFPenalty
Fix remote log reading in not Windows
2018-12-16 21:16:56 -06:00

18 lines
266 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Created on 2016-5-26
@author: hustcc
'''
# parameter not valid
class ParameterUnvalid(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return repr(self.value)