Source code for statistics.exceptions

"""
.. module:: statsExceptions
   :synopsis: Contains exceptions for SModelS's statistics package.

.. moduleauthor:: Andre Lessa <lessa.a.p@gmail.com>

"""


[docs]class SModelSStatisticsError(Exception): """ Class to define SModelS specific errors """ def __init__(self, value=None): self.value = value Exception.__init__(self, value) def __str__(self): return repr(self.value)