-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathexceptions.py
110 lines (87 loc) · 3.48 KB
/
exceptions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#
# Copyright 2020 Logical Clocks AB
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from __future__ import annotations
from enum import Enum
from typing import Any, Union
import requests
class RestAPIError(Exception):
"""REST Exception encapsulating the response object and url."""
class FeatureStoreErrorCode(int, Enum):
FEATURE_GROUP_COMMIT_NOT_FOUND = 270227
STATISTICS_NOT_FOUND = 270228
def __eq__(self, other: Union[int, Any]) -> bool:
if isinstance(other, int):
return self.value == other
if isinstance(other, self.__class__):
return self is other
return False
def __init__(self, url: str, response: requests.Response) -> None:
try:
error_object = response.json()
if isinstance(error_object, str):
error_object = {"errorMsg": error_object}
except Exception:
error_object = {}
message = (
"Metadata operation error: (url: {}). Server response: \n"
"HTTP code: {}, HTTP reason: {}, body: {}, error code: {}, error msg: {}, user "
"msg: {}".format(
url,
response.status_code,
response.reason,
response.content,
error_object.get("errorCode", ""),
error_object.get("errorMsg", ""),
error_object.get("usrMsg", ""),
)
)
super().__init__(message)
self.url = url
self.response = response
class UnknownSecretStorageError(Exception):
"""This exception will be raised if an unused secrets storage is passed as a parameter."""
class FeatureStoreException(Exception):
"""Generic feature store exception"""
class VectorDatabaseException(Exception):
# reason
REQUESTED_K_TOO_LARGE = "REQUESTED_K_TOO_LARGE"
REQUESTED_NUM_RESULT_TOO_LARGE = "REQUESTED_NUM_RESULT_TOO_LARGE"
OTHERS = "OTHERS"
# info
REQUESTED_K_TOO_LARGE_INFO_K = "k"
REQUESTED_NUM_RESULT_TOO_LARGE_INFO_N = "n"
def __init__(self, reason: str, message: str, info: str) -> None:
super().__init__(message)
self._info = info
self._reason = reason
@property
def reason(self) -> str:
return self._reason
@property
def info(self) -> str:
return self._info
class DataValidationException(FeatureStoreException):
"""Raised when data validation fails only when using "STRICT" validation ingestion policy."""
def __init__(self, message: str) -> None:
super().__init__(message)
class ExternalClientError(TypeError):
"""Raised when external client cannot be initialized due to missing arguments."""
def __init__(self, missing_argument: str) -> None:
message = (
"{0} cannot be of type NoneType, {0} is a non-optional "
"argument to connect to hopsworks from an external environment."
).format(missing_argument)
super().__init__(message)