#[derive(thiserror::Error, Debug)]
pub enum PredicateError {
#[error(
"Support for invalidation closures is disabled in this cache. \
Please enable it by calling the support_invalidation_closures method \
of the builder at the cache creation time"
)]
InvalidationClosuresDisabled,
}