Source code for geochemistrypi.data_mining.utils.exceptions

# -*- coding: utf-8 -*-
[docs] class InvalidFileError(Exception): def __init__(self, value): self._value = value def __str__(self): return repr(self._value)