Files
mayan-edms/mayan/apps/common/warnings.py
Roberto Rosario 0e6f34d0ee Add deprecation warning to convertdb
Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
2019-05-06 02:30:48 -04:00

20 lines
370 B
Python

from __future__ import absolute_import
class DatabaseWarning(UserWarning):
"""
Warning when using unsupported database backends
"""
class DeprecationWarning(UserWarning):
"""
Warning when a feature or interface has been deprecated
"""
class InterfaceWarning(UserWarning):
"""
Warning when using obsolete internal interfaces
"""