Reformat evaluator #2 (exceptions)

This commit is contained in:
Bartłomiej Pluta
2019-07-04 18:09:20 +02:00
parent 34a0eda199
commit 23e0f3f33e
4 changed files with 23 additions and 12 deletions

9
smnp/error/note.py Normal file
View File

@@ -0,0 +1,9 @@
from smnp.error.base import SmnpException
class NoteException(SmnpException):
def __init__(self, msg):
super().__init__(msg)
def _title(self):
return "Note Error"