29 lines
547 B
Python
29 lines
547 B
Python
from __future__ import annotations
|
|
import paravision.recognition.exceptions
|
|
import typing
|
|
|
|
__all__ = [
|
|
"InternalErrorException",
|
|
"InvalidInputException",
|
|
"ModelLoadingException",
|
|
"ParavisionException"
|
|
]
|
|
|
|
|
|
class ParavisionException(Exception, BaseException):
|
|
pass
|
|
|
|
|
|
class InvalidInputException(ParavisionException, Exception, BaseException):
|
|
pass
|
|
|
|
|
|
class ModelLoadingException(ParavisionException, Exception, BaseException):
|
|
pass
|
|
|
|
|
|
class InternalErrorException(ParavisionException, Exception, BaseException):
|
|
pass
|
|
|
|
|