2020-03-31 12:53:17 +01:00

13 lines
344 B
Python

from __future__ import print_function, absolute_import, division
class Error(Exception):
"""Base Cu2Qu exception class for all other errors."""
class ApproxNotFoundError(Error):
def __init__(self, curve):
message = "no approximation found: %s" % curve
super(Error, self).__init__(message)
self.curve = curve