8 lines
258 B
Python
8 lines
258 B
Python
|
class ConfigError(RuntimeError):
|
||
|
"""An error encountered during reading the config file
|
||
|
|
||
|
Args:
|
||
|
msg (str): The message displayed to the user on error
|
||
|
"""
|
||
|
def __init__(self, msg):
|
||
|
super(ConfigError, self).__init__("%s" % (msg,))
|