fenic.core.error
Fenic error hierarchy.
Classes:
-
CatalogAlreadyExistsError–Catalog already exists.
-
CatalogError–Catalog and table management errors.
-
CatalogNotFoundError–Catalog doesn't exist.
-
CloudExecutionError–Errors during physical plan execution in a cloud session.
-
CloudSessionError–Cloud session lifecycle errors.
-
ColumnNotFoundError–Column doesn't exist.
-
ConfigurationError–Errors during session configuration or initialization.
-
DatabaseAlreadyExistsError–Database already exists.
-
DatabaseNotFoundError–Database doesn't exist.
-
ExecutionError–Errors during physical plan execution.
-
FenicError–Base exception for all fenic errors.
-
FileLoaderError–File loader error.
-
InternalError–Internal invariant violations.
-
InvalidExampleCollectionError–Exception raised when a semantic example collection is invalid.
-
LineageError–Errors during lineage traversal.
-
PlanError–Errors during logical plan construction and validation.
-
SessionError–Session lifecycle errors.
-
TableAlreadyExistsError–Table already exists.
-
TableNotFoundError–Table doesn't exist.
-
ToolAlreadyExistsError–Tool already exists.
-
ToolNotFoundError–Tool doesn't exist.
-
TypeMismatchError–Type validation errors.
-
UnsupportedFileTypeError–Unsupported file type error.
-
ValidationError–Invalid usage of public APIs or incorrect arguments.
CatalogAlreadyExistsError
CatalogAlreadyExistsError(catalog_name: str)
Bases: CatalogError
Catalog already exists.
Initialize a catalog already exists error.
Parameters:
-
catalog_name(str) –The name of the catalog that already exists.
Source code in src/fenic/core/error.py
131 132 133 134 135 136 137 | |
CatalogError
Bases: FenicError
Catalog and table management errors.
CatalogNotFoundError
CatalogNotFoundError(catalog_name: str)
Bases: CatalogError
Catalog doesn't exist.
Initialize a catalog not found error.
Parameters:
-
catalog_name(str) –The name of the catalog that was not found.
Source code in src/fenic/core/error.py
119 120 121 122 123 124 125 | |
CloudExecutionError
CloudExecutionError(error_message: str)
Bases: ExecutionError
Errors during physical plan execution in a cloud session.
Initialize a cloud execution error.
Parameters:
-
error_message(str) –The error message describing what went wrong.
Source code in src/fenic/core/error.py
230 231 232 233 234 235 236 237 238 | |
CloudSessionError
CloudSessionError(error_message: str)
Bases: SessionError
Cloud session lifecycle errors.
Initialize a cloud session error.
Parameters:
-
error_message(str) –The error message describing what went wrong.
Source code in src/fenic/core/error.py
34 35 36 37 38 39 40 41 42 | |
ColumnNotFoundError
ColumnNotFoundError(column_name: str, available_columns: List[str])
Bases: PlanError
Column doesn't exist.
Initialize a column not found error.
Parameters:
-
column_name(str) –The name of the column that was not found.
-
available_columns(List[str]) –List of column names that are available.
Source code in src/fenic/core/error.py
68 69 70 71 72 73 74 75 76 77 78 | |
ConfigurationError
Bases: FenicError
Errors during session configuration or initialization.
DatabaseAlreadyExistsError
DatabaseAlreadyExistsError(database_name: str)
Bases: CatalogError
Database already exists.
Initialize a database already exists error.
Parameters:
-
database_name(str) –The name of the database that already exists.
Source code in src/fenic/core/error.py
211 212 213 214 215 216 217 | |
DatabaseNotFoundError
DatabaseNotFoundError(database_name: str)
Bases: CatalogError
Database doesn't exist.
Initialize a database not found error.
Parameters:
-
database_name(str) –The name of the database that was not found.
Source code in src/fenic/core/error.py
199 200 201 202 203 204 205 | |
ExecutionError
Bases: FenicError
Errors during physical plan execution.
FenicError
Bases: Exception
Base exception for all fenic errors.
FileLoaderError
FileLoaderError(exception: Exception)
Bases: FenicError
File loader error.
Initialize a file loader error.
Parameters:
-
exception(Exception) –The exception that was raised.
Source code in src/fenic/core/error.py
259 260 261 262 263 264 265 | |
InternalError
Bases: FenicError
Internal invariant violations.
InvalidExampleCollectionError
Bases: ValidationError
Exception raised when a semantic example collection is invalid.
LineageError
Bases: FenicError
Errors during lineage traversal.
PlanError
Bases: FenicError
Errors during logical plan construction and validation.
SessionError
Bases: ConfigurationError
Session lifecycle errors.
TableAlreadyExistsError
TableAlreadyExistsError(table_name: str, database: Optional[str] = None)
Bases: CatalogError
Table already exists.
Initialize a table already exists error.
Parameters:
-
table_name(str) –The name of the table that already exists.
-
database(Optional[str], default:None) –Optional name of the database containing the table.
Source code in src/fenic/core/error.py
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 | |
TableNotFoundError
TableNotFoundError(table_name: str, database: str)
Bases: CatalogError
Table doesn't exist.
Initialize a table not found error.
Parameters:
-
table_name(str) –The name of the table that was not found.
-
database(str) –The name of the database containing the table.
Source code in src/fenic/core/error.py
143 144 145 146 147 148 149 150 151 152 | |
ToolAlreadyExistsError
ToolAlreadyExistsError(tool_name: str)
Bases: CatalogError
Tool already exists.
Initialize a tool already exists error.
Parameters:
-
tool_name(str) –The name of the tool that already exists.
Source code in src/fenic/core/error.py
188 189 190 191 192 193 194 | |
ToolNotFoundError
ToolNotFoundError(tool_name: str)
Bases: CatalogError
Tool doesn't exist.
Initialize a tool not found error.
Parameters:
-
tool_name(str) –The name of the tool that was not found.
Source code in src/fenic/core/error.py
177 178 179 180 181 182 183 | |
TypeMismatchError
TypeMismatchError(expected: DataType, actual: DataType, context: str)
Bases: PlanError
Type validation errors.
Initialize a type mismatch error.
Parameters:
-
expected(DataType) –The expected data type.
-
actual(DataType) –The actual data type that was found.
-
context(str) –Additional context about where the type mismatch occurred.
Methods:
-
from_message–Create a TypeMismatchError from a message string.
Source code in src/fenic/core/error.py
84 85 86 87 88 89 90 91 92 | |
from_message
classmethod
from_message(msg: str) -> TypeMismatchError
Create a TypeMismatchError from a message string.
Parameters:
-
msg(str) –The error message.
Returns:
-
TypeMismatchError–A new TypeMismatchError instance with the given message.
Source code in src/fenic/core/error.py
94 95 96 97 98 99 100 101 102 103 104 105 106 | |
UnsupportedFileTypeError
UnsupportedFileTypeError(file_type: DataType)
Bases: FileLoaderError
Unsupported file type error.
Initialize a unsupported file type error.
Parameters:
-
file_type(DataType) –The unsupported file type.
Source code in src/fenic/core/error.py
270 271 272 273 274 275 276 | |
ValidationError
Bases: FenicError
Invalid usage of public APIs or incorrect arguments.