This warning is used to categorize the SQLite production usage warning. Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
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
|
|
"""
|