feat(cache): add the unsupported operation error

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
Yujong Lee 2026-09-21 20:34:39 +00:00
parent 6ab121a3e7
commit a69ebb7ac4

View file

@ -6,4 +6,6 @@ pub enum Error {
InvalidEntry,
#[error("flushing Redis requires an explicit namespace")]
UnscopedFlush,
#[error("cache backend does not support this operation")]
UnsupportedOperation,
}