9 lines
189 B
Python
9 lines
189 B
Python
from smnp.error.base import SmnpException
|
|
|
|
|
|
class NoteException(SmnpException):
|
|
def __init__(self, msg):
|
|
super().__init__(msg)
|
|
|
|
def _title(self):
|
|
return "Note Error" |