mirror of
1
0
Fork 0
dotbot/dotbot/config.py

20 lines
481 B
Python
Raw Normal View History

2014-03-19 23:07:30 -04:00
import json
class ConfigReader(object):
def __init__(self, config_file_path):
self._config = self._read(config_file_path)
def _read(self, config_file_path):
try:
with open(config_file_path) as fin:
data = json.load(fin)
return data
except Exception:
raise ReadingError('Could not read config file')
def get_config(self):
return self._config
class ReadingError(Exception):
pass