Bases: Exception
Unsupported functionality
Raise this if there is missing configuration or unsupported
conbombination of parameters.
Source code in enrichsdk/lib/exceptions.py
| def __init__(self, message, elements=[]):
super(Unsupported, self).__init__(message)
self.elements = elements
|