BarNapkin.Infrastructure.WebUI.Filters.Errors.RedirectOnErrorAttribute.IsExactMatch C# (CSharp) Method

IsExactMatch() public method

public IsExactMatch ( Exception exception ) : bool
exception System.Exception
return bool
        public bool IsExactMatch( Exception exception )
        {
            return Types != null && Types.Contains(exception.GetType());
        }