CPF/CPF.Windows/MicroCom/IMicroComExceptionCallback.cs

13 lines
227 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CPF.Windows.MicroCom
{
public interface IMicroComExceptionCallback
{
void RaiseException(Exception e);
}
}