I have a class that inherit from AbstractException
I would like to create a new constructor that has 5 parameters :
Class Foo Extends%Exception.AbstractException
{
Method %OnNew(arg1 As%String, arg2 As%String, arg3 As%String, arg4 As%String, arg5 As%String) As%Status
{
quit##super("some message")
}
}I cannot compile it :
ERROR #5478: Keyword signature error in Foo:%OnNew, keyword 'method argument/s signature' must be '%Library.String,%Library.String,%Library.String,%Library.String,%Exception.AbstractException' or its subclass



