[docs]classTileDataError(BaseException):"Raise if the JSON corresponding to the FLAME Image cannot be found"def__init__(self,message):self.message=messagesuper().__init__(self.message)
[docs]classFLAMEImageError(BaseException):"Raise if the FLAME Image could not be initialized for any reason"def__init__(self,message):self.message=messagesuper().__init__(self.message)
[docs]classFLAMEDtypeError(BaseException):"Raise if some dtype could not be appropriate verified"def__init__(self,message):self.message=messagesuper().__init__(self.message)
[docs]classFLAMEEvalError(BaseException):"Raise if some error occurs during FLAME model evaluation"def__init__(self,message):self.message=messagesuper().__init__(self.message)
[docs]classCAREDatasetError(BaseException):"Raise if some error occurs from a CARE dataset"def__init__(self,message):self.message=messagesuper().__init__(self.message)
[docs]classCAREInferenceError(BaseException):"Raise if some error occurs during CARE inference"def__init__(self,message):self.message=messagesuper().__init__(self.message)
[docs]classFLAMEIOError(BaseException):"Raise if some error occurs with input/output during FLAME/CARE"def__init__(self,message):self.message=messagesuper().__init__(self.message)
[docs]classFLAMEMLFlowError(BaseException):"Raise if some error occurs during interfact with MLFlow in any FLAME dependency"def__init__(self,message):self.message=messagesuper().__init__(self.message)
[docs]classFLAMECmdError(BaseException):"Raise if some error occurs when running command-line FLAME scripts"def__init__(self,message):self.message=messagesuper().__init__(self.message)
[docs]classFLAMEPyMatlabError(BaseException):"Raise if some error occurs when Python tries to interface with MATLAB"def__init__(self,message):self.message=messagesuper().__init__(self.message)