mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
21 lines
624 B
Python
21 lines
624 B
Python
import mishards.exception_codes as codes
|
|
|
|
class BaseException(Exception):
|
|
code = codes.INVALID_CODE
|
|
message = 'BaseException'
|
|
def __init__(self, message='', metadata=None):
|
|
self.message = self.__class__.__name__ if not message else message
|
|
self.metadata = metadata
|
|
|
|
class ConnectionConnectError(BaseException):
|
|
code = codes.CONNECT_ERROR_CODE
|
|
|
|
class ConnectionNotFoundError(BaseException):
|
|
code = codes.CONNECTTION_NOT_FOUND_CODE
|
|
|
|
class TableNotFoundError(BaseException):
|
|
code = codes.TABLE_NOT_FOUND_CODE
|
|
|
|
class InvalidArgumentError(BaseException):
|
|
code = codes.INVALID_ARGUMENT
|