using NCC.Dependency;
using System;
using System.Runtime.Serialization;
namespace NCC.ViewEngine
{
///
/// 视图引擎异常类
///
[SuppressSniffer]
public class ViewEngineException : Exception
{
///
/// 构造函数
///
public ViewEngineException()
{
}
///
/// 构造函数
///
///
///
protected ViewEngineException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
///
/// 构造函数
///
///
public ViewEngineException(string message) : base(message)
{
}
///
/// 构造函数
///
///
///
public ViewEngineException(string message, Exception innerException) : base(message, innerException)
{
}
}
}