27 lines
465 B
C#
27 lines
465 B
C#
|
|
using Kingdee.BOS.Util;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace ACheckDll
|
|||
|
|
{
|
|||
|
|
[HotUpdate, Description("TEST")]
|
|||
|
|
public class Class1
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public void AAAAA()
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
try
|
|||
|
|
{
|
|||
|
|
throw new Exception("TEST");
|
|||
|
|
}
|
|||
|
|
catch (Exception ex)
|
|||
|
|
{
|
|||
|
|
throw ex;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|