namespace XFEExtension.NetCore.XApp.Core;
///
/// XApp的异常
///
public class XAppException : Exception
{
///
/// XApp的异常
///
public XAppException() { }
///
/// XApp的异常
///
/// 错误消息
public XAppException(string message) : base(message) { }
///
/// XApp的异常
///
/// 错误消息
/// 内部错误
public XAppException(string message, Exception inner) : base(message, inner) { }
}