FeatureNotFoundException

Thrown when attempting to access a feature that does not exist in the store.

This exception is typically thrown by operations such as:

Example:

try {
featureStore -= featureId
} catch (e: FeatureNotFoundException) {
logger.error("Cannot delete feature ${e.message}")
}

Parameters

featureId

The unique identifier of the feature that was not found

See also

Constructors

Link copied to clipboard
constructor(featureId: String)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open val message: String?