Improve support for functions #2

This commit is contained in:
Bartłomiej Pluta
2019-07-04 11:31:02 +02:00
parent 6390ac20de
commit ce101df380
7 changed files with 96 additions and 50 deletions

View File

@@ -1,4 +1,7 @@
class SyntaxException(Exception):
from smnp.error.base import SmnpException
class SyntaxException(SmnpException):
def __init__(self, pos, msg):
posStr = "" if pos is None else f" [line {pos[0]+1}, col {pos[1]+1}]"
self.msg = f"Syntax error{posStr}:\n{msg}"