FeatureNotFoundException
Thrown when attempting to access a feature that does not exist in the store.
This exception is typically thrown by operations such as:
FeatureStore.get() when using helper extensions that throw
Example:
try {
featureStore -= featureId
} catch (e: FeatureNotFoundException) {
logger.error("Cannot delete feature ${e.message}")
}Content copied to clipboard
Parameters
featureId
The unique identifier of the feature that was not found