11 lines
210 B
Python
11 lines
210 B
Python
from smnp.error.base import SmnpException
|
|
|
|
|
|
class SyntaxException(SmnpException):
|
|
def __init__(self, msg, pos=None):
|
|
super().__init__(msg, pos)
|
|
|
|
def _title(self):
|
|
return "Syntax Error"
|
|
|