Source code for omxware.exceptions.InvalidParamsException

"""
OMXWare InvalidParams Exception
"""
from omxware.exceptions.Error import Error


[docs]class InvalidParamsError(Error): def __init__(self, message): super().__init__(message) self._message = message
[docs] def get_message(self): """Return the status code""" return self._message