mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-18 13:09:04 +02:00
12 lines
334 B
Python
12 lines
334 B
Python
# -*- coding: utf-8 -*-
|
|
"""admin.py: messages extends"""
|
|
|
|
__author__ = 'ali'
|
|
|
|
class LevelOfMessageException(Exception):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super(LevelOfMessageException, self).__init__(*args, **kwargs)
|
|
|
|
def __str__(self):
|
|
return "The level of the message, can't be proccess by this storage"
|