0ccbef45a1
Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
269 B
C#
14 lines
269 B
C#
using System.Web;
|
|
using System.Web.Mvc;
|
|
|
|
namespace atakanozbancom
|
|
{
|
|
public class FilterConfig
|
|
{
|
|
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
|
|
{
|
|
filters.Add(new HandleErrorAttribute());
|
|
}
|
|
}
|
|
}
|