mirror of
https://github.com/django/django.git
synced 2025-02-22 07:24:59 +00:00
8 lines
187 B
Python
8 lines
187 B
Python
from django.core.cache.backends.locmem import LocMemCache
|
|
|
|
|
|
class CacheClass(LocMemCache):
|
|
|
|
def set(self, *args, **kwargs):
|
|
raise Exception("Faked exception saving to cache")
|