1 Star 0 Fork 10

camark / vJine.Core

forked from Ivan.Lee / vJine.Core 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ContextException.cs 705 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ivan.Lee 提交于 2014-04-07 20:54 . 0.3.0.0
using System;
using System.Collections.Generic;
using System.Text;
namespace vJine.Core.Context
{
public class ContextException : Exception
{
public ContextException(string Msg, params object[] Args)
: base(string.Format(Msg, Args))
{
}
}
public class BizContextException : ContextException
{
public BizContextException(string Msg, params object[] Args)
: base(Msg, Args)
{
}
}
public class SysContextException : ContextException
{
public SysContextException(string Msg, params object[] Args)
: base(Msg, Args)
{
}
}
}
1
https://gitee.com/camark/vJine.Core.git
git@gitee.com:camark/vJine.Core.git
camark
vJine.Core
vJine.Core
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891