Improve support for functions #2
This commit is contained in:
6
smnp/error/function.py
Normal file
6
smnp/error/function.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from smnp.error.base import SmnpException
|
||||
|
||||
|
||||
class IllegalFunctionInvocationException(SmnpException):
|
||||
def __init__(self, expected, found):
|
||||
self.msg = f"Illegal function invocation\n\nExpected signature:\n{expected}\n\nFound:\n{found}"
|
||||
Reference in New Issue
Block a user