8 lines
173 B
Python
8 lines
173 B
Python
from django.core.exceptions import ImproperlyConfigured
|
|
|
|
class MissingStorage(ImproperlyConfigured):
|
|
pass
|
|
|
|
class NoFileStorageConfigured(ImproperlyConfigured):
|
|
pass
|