Add the mayan.apps.common.warnings module with an initial InterfaceWarning warning class used to mark use of deprecated internal interfaces. Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
8 lines
146 B
Python
8 lines
146 B
Python
from __future__ import absolute_import
|
|
|
|
|
|
class InterfaceWarning(UserWarning):
|
|
"""
|
|
Warning when using obsolete internal interfaces
|
|
"""
|