Files
smnp-py/smnp/error/syntax.py
Bartłomiej Pluta 34a0eda199 Reformat evaluator #1
2019-07-04 17:57:12 +02:00

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"