Open Kilda Java Documentation
exc.py
Go to the documentation of this file.
1 
2 class ConfigError(Exception):
3  def __init__(self, section, option, error):
4  message = 'There is an issue with option [{}]{!r}: {}'.format(
5  section, option, error)
6  super(ConfigError, self).__init__(message)
def __init__(self, section, option, error)
Definition: exc.py:3