Skip to content

Commit aa3711f

Browse files
committed
Add error handling to OnGetConnections method for improved stability
1 parent 577ac3f commit aa3711f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/iop/cls/IOP/Common.cls

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,12 @@ ClassMethod OnGetConnections(
193193
pItem As Ens.Config.Item)
194194
{
195195
// finds any settings of type Ens.DataType.ConfigName
196-
do ..GetPropertyConnections(.pArray,pItem)
196+
Try {
197+
do ..GetPropertyConnections(.pArray,pItem)
198+
}
199+
Catch ex {
200+
}
201+
197202

198203
// Get settings
199204
do pItem.GetModifiedSetting("%classpaths", .tClasspaths)

0 commit comments

Comments
 (0)