You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
651 B
27 lines
651 B
|
|
namespace Common.Exceptions
|
|
{
|
|
/// <summary>
|
|
/// 功能:程序集未加载异常
|
|
/// 作者:王昊昇
|
|
/// 时间:2012.2.8
|
|
/// </summary>
|
|
public class AssemblyNotLoadException : System.Exception
|
|
{
|
|
/// <summary>
|
|
/// 创建程序集未加载异常
|
|
/// </summary>
|
|
public AssemblyNotLoadException(string assemblyName)
|
|
{
|
|
string.Format(Message, assemblyName);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取异常消息
|
|
/// </summary>
|
|
public override string Message
|
|
{
|
|
get { return "程序集未加载!{0}"; }
|
|
}
|
|
}
|
|
}
|
|
|