CPF/CPF.Windows/MicroCom/IMicroComExceptionCallback.cs
2023-11-21 23:05:03 +08:00

13 lines
227 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CPF.Windows.MicroCom
{
public interface IMicroComExceptionCallback
{
void RaiseException(Exception e);
}
}