mirror of
https://github.com/django/django.git
synced 2025-02-08 16:35:17 +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")
|