必须填写至少10个字的日志
nnhy 编写于 2012-07-27 18:48:21
X
using System;
using System.Collections.Generic;
using System.Web;
using NewLife.Mvc;

/// <summary>
///TestError 的摘要说明
/// </summary>
public class TestError : IController
{
    public void ProcessRequest(IRouteContext context)
    {
        throw new Exception("控制器内部抛出的异常");
    }

    public bool IsReusable
    {
        get { return true; }
    }
}