using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FLY.Thick.Base.IService
{
public interface INotifyErrorArisen
{
event ErrorArisenEventHander ErrorArisenEvent;
}
public class ErrorArisenEventArgs : EventArgs
{
///
/// 未知错误
///
public const byte ERRNO_Unkown = 0;
///
/// 出错码
///
public byte Errno = ERRNO_Unkown;
}
public delegate void ErrorArisenEventHander(object sender, ErrorArisenEventArgs e);
}