Skip to content

Commit 2b9ab70

Browse files
Fix name passed to GXUtil.HandleException: it must pass the executable name.
1 parent 691aa23 commit 2b9ab70

File tree

1 file changed

+1
-1
lines changed
  • dotnet/src/dotnetframework/GxClasses/Model

1 file changed

+1
-1
lines changed

dotnet/src/dotnetframework/GxClasses/Model/gxproc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ protected int MainImplEx(string[] args)
6262
}
6363
catch (Exception ex)
6464
{
65-
return GXUtil.HandleException(ex, GetType().ToString(), args); ;
65+
return GXUtil.HandleException(ex, Path.GetFileNameWithoutExtension(Assembly.GetEntryAssembly().Location), args); ;
6666
}
6767
}
6868

0 commit comments

Comments
 (0)