Hi!
We have problems in some productions where it stuck in a Queue when things goes wrong and i wonder if somebody have som tips to avoid it?
example when we got stuck is this:
set MyClass= ##class(SomeClass).%New(). MyClass has a Datefield
try
{
MyClass.Date = Sourcedata.Date //Sourcedata send us wrong format to that datefield. Error occur.
}
catch ex
{
set tErrMsg = "Error i this method " _ $System.Status.GetOneStatusText(ex.AsStatus())
$$$LOGERROR(tErrMsg)
Quit
}
In this case the catch-scope is not seems to be reached at all and the production get stuck in a Queue.
And this is pretty common for



