14 lines
253 B
Python
14 lines
253 B
Python
from __future__ import absolute_import
|
|
|
|
|
|
class DatabaseWarning(UserWarning):
|
|
"""
|
|
Warning when using unsupported database backends
|
|
"""
|
|
|
|
|
|
class InterfaceWarning(UserWarning):
|
|
"""
|
|
Warning when using obsolete internal interfaces
|
|
"""
|