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