FF4kException
Base exception for all FF4k library operations.
This sealed class serves as the root of the FF4k exception hierarchy, allowing consumers to catch all library-specific exceptions with a single catch block if needed. All exceptions thrown by FF4k components extend from this base class.
Being a sealed class, this provides type-safe exception handling and enables exhaustive when expressions for exception handling patterns.
Parameters
message
The detail message describing the exception
cause
The underlying cause of this exception, or null if none
See also
Base exception for feature store operations